diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-07-06 10:05:40 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-07-06 10:05:40 +0000 |
commit | 83fe3a2af8bd2b7a70f0bd9a7d5853bd952e3678 (patch) | |
tree | 260513b353785db0a4937dcda6bfb1d2616419f8 /source/main.c | |
parent | 06f2daa56e0eb8e592c015b07dbeb787bb081e4d (diff) |
Tweaks to version macro and gfxInit
Diffstat (limited to 'source/main.c')
-rw-r--r-- | source/main.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/main.c b/source/main.c index 0610a6f..46eccfe 100644 --- a/source/main.c +++ b/source/main.c @@ -33,9 +33,7 @@ #include "snapshot.h" #include "snap.h" -#ifndef DSSPEC_VERSION -#define DSSPEC_VERSION "DEV " __TIME__ "/" __DATE__ -#endif +#define DSSPEC_VERSION "DEVEL" #ifndef TRUE #define TRUE 1 @@ -238,7 +236,7 @@ int main(int argc, char *argv[]) Z80 *z80; int quit = FALSE; - gfxInit(GSP_RGB565_OES, GSP_RGB565_OES, false); + gfxInit(GSP_RGB565_OES, GSP_RGB565_OES, FALSE); FB_Init(); |