mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 08:25:45 -07:00
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:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user