summaryrefslogtreecommitdiffstats
path: root/src/sdl-test.c
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-03-27 13:49:26 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-03-27 13:49:26 (GMT)
commit039b291ac0508c881d63303c4b22eebbd55e7e3d (patch)
treeb1e29600f8e82b719111b28a3357063012a8d69a /src/sdl-test.c
parent80ea9c0737c306adc432e97c8784bf55910c0d4a (diff)
downloadmxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.zip
mxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.tar.gz
mxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.tar.bz2
fix compiler errors instead of suppressing them
Diffstat (limited to 'src/sdl-test.c')
-rw-r--r--src/sdl-test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sdl-test.c b/src/sdl-test.c
index 7691fe8..0ebf4ee 100644
--- a/src/sdl-test.c
+++ b/src/sdl-test.c
@@ -13,6 +13,7 @@ int main(int argc, char *argv[])
if (SDL_Init(SDL_INIT_EVERYTHING) < 0) return 1;
screen = SDL_SetVideoMode(640, 480, 32, SDL_HWSURFACE);
+ (void)screen;
SDL_Quit();
return 0;