home · contact · privacy
Server: Minor simplifcation of mv_yx_in_dir_legal().
authorChristian Heller <c.heller@plomlompom.de>
Sat, 6 Sep 2014 02:37:21 +0000 (04:37 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 6 Sep 2014 02:37:21 +0000 (04:37 +0200)
src/server/map.c

index 0007633711d7ba29a5a7a5a9297c62ff47efaafd..c58ff2135e535f7e2ae00ddf0ecd141def5f19a1 100644 (file)
@@ -200,9 +200,7 @@ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx)
     char * err = "Too much wrapping in mv_yx_in_dir_legal().";
     exit_err(   INT8_MIN == wrap_west_east || INT8_MIN == wrap_north_south
              || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south, err);
-    struct yx_uint8 original;
-    original.y = yx->y;
-    original.x = yx->x;
+    struct yx_uint8 original = *yx;
     mv_yx_in_dir(dir, yx);
     if      (('e' == dir || 'd' == dir || 'c' == dir) && yx->x < original.x)
     {