ref: 2b384fae11bd6be37040e5b07d77e92721ed786b
parent: 9f9a1368a944207ebd1eef736c62043d8c0d4135
author: Jacob Nevins <[email protected]>
date: Thu Feb 22 16:31:59 EST 2007
Remove spurious semicolons from macros; their upset compilers that don't like mixing declarations and code (I accidentally tried to compile it with one such). [originally from svn r7313]
--- a/unfinished/sokoban.c
+++ b/unfinished/sokoban.c
@@ -99,8 +99,8 @@
#define BARREL_LABEL(b) ( (b)>='A'&&(b)<='Z' ? (b) : \
(b)>=1 && (b)<=26 ? (b)+('A'-1) : 0 )
-#define DX(d) (d == 0 ? -1 : d == 2 ? +1 : 0);
-#define DY(d) (d == 1 ? -1 : d == 3 ? +1 : 0);
+#define DX(d) (d == 0 ? -1 : d == 2 ? +1 : 0)
+#define DY(d) (d == 1 ? -1 : d == 3 ? +1 : 0)
#define FLASH_LENGTH 0.3F