Browse Source

* Minor compilation warning fix. OS X x86 defines "DELAY".

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
b6d2c75b78
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/spritedit.c

+ 2
- 2
test/spritedit.c View File

@@ -19,7 +19,7 @@
#include "cucul.h" #include "cucul.h"
#include "caca.h" #include "caca.h"


#define DELAY 100
#define MYDELAY 100


int main(int argc, char **argv) int main(int argc, char **argv)
{ {
@@ -96,7 +96,7 @@ int main(int argc, char **argv)
} }
} }
delay++; delay++;
if(delay>=DELAY) {
if(delay>=MYDELAY) {
delay = 0; delay = 0;
} }
} }


Loading…
Cancel
Save