Mercurial > sdl-ios-xcode
diff test/testime.c @ 3338:9de326b3099c
Fixed bug #817
Daniele Forghieri 2009-09-30 15:48:24 PDT
Some tests doesn't use the correct include statement (and there are some
missing declaration) and some test use C++ variable after statement, preventing
compile wicth Open Watcom
The patch attached fixes this
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 04 Oct 2009 09:55:20 +0000 |
parents | 2d3a9f229ba1 |
children | f7541260e89c |
line wrap: on
line diff
--- a/test/testime.c Sun Oct 04 09:51:04 2009 +0000 +++ b/test/testime.c Sun Oct 04 09:55:20 2009 +0000 @@ -1,5 +1,5 @@ /* A simple program to test the Input Method support in the SDL library (1.3+) */ - + #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -8,7 +8,7 @@ #ifdef HAVE_SDL_TTF #include "SDL_ttf.h" #endif - + #define DEFAULT_PTSIZE 30 #define DEFAULT_FONT "/System/Library/Fonts/华文细黑.ttf" #define MAX_TEXT_LENGTH 256 @@ -210,13 +210,13 @@ int main(int argc, char *argv[]) { + SDL_Event event; + int done = 0; + InitVideo(argc, argv); InitInput(); Redraw(); - SDL_Event event; - int done = 0; - while (! done && SDL_WaitEvent(&event)) { switch (event.type)