Mercurial > sdl-ios-xcode
view src/main/linux/SDL_main.c @ 8:5574376c451d
Fixed relative motion checking after restore under X11
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Fri, 27 Apr 2001 16:56:47 +0000 |
parents | 74212992fb08 |
children | 25dfe480c75e |
line wrap: on
line source
/* Include the SDL main definition header */ #include "SDL_main.h" #ifdef main #undef main #endif extern int SDL_run(int argc, char **argv); int main(int argc, char *argv[]) { return(SDL_run(argc, argv)); }