From: Christian Heller Date: Wed, 21 Aug 2013 19:10:05 +0000 (+0200) Subject: Re-styled code. X-Git-Tag: tce~1074 X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=commitdiff_plain;h=a592eadef06988e650ae09de0f9f5abffb482663;p=plomrogue Re-styled code. --- diff --git a/src/yx_uint16.c b/src/yx_uint16.c index 2d7503b..4898c4a 100644 --- a/src/yx_uint16.c +++ b/src/yx_uint16.c @@ -9,9 +9,13 @@ extern char yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b) { if (a.y == b.y && a.x == b.x) + { return 1; + } else + { return 0; + } } @@ -19,12 +23,20 @@ extern char yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b) extern struct yx_uint16 mv_yx_in_dir(enum dir d, struct yx_uint16 yx) { if (d == NORTH) + { yx.y--; + } else if (d == EAST) + { yx.x++; + } else if (d == SOUTH) + { yx.y++; + } else if (d == WEST) + { yx.x--; + } return yx; }