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]
This commit is contained in:
Jacob Nevins
2007-02-22 21:31:59 +00:00
parent 9f9a1368a9
commit 2b384fae11

View File

@ -99,8 +99,8 @@
#define BARREL_LABEL(b) ( (b)>='A'&&(b)<='Z' ? (b) : \ #define BARREL_LABEL(b) ( (b)>='A'&&(b)<='Z' ? (b) : \
(b)>=1 && (b)<=26 ? (b)+('A'-1) : 0 ) (b)>=1 && (b)<=26 ? (b)+('A'-1) : 0 )
#define DX(d) (d == 0 ? -1 : d == 2 ? +1 : 0); #define DX(d) (d == 0 ? -1 : d == 2 ? +1 : 0)
#define DY(d) (d == 1 ? -1 : d == 3 ? +1 : 0); #define DY(d) (d == 1 ? -1 : d == 3 ? +1 : 0)
#define FLASH_LENGTH 0.3F #define FLASH_LENGTH 0.3F