view src/main/linux/SDL_main.c @ 113:e21ac1dd30f1

Fixed crash if mouse is outside of the screen bounds for some reason
author Sam Lantinga <slouken@lokigames.com>
date Wed, 18 Jul 2001 20:08:18 +0000
parents 25dfe480c75e
children
line wrap: on
line source


/* Include the SDL main definition header */
#include "SDL_main.h"
#ifdef main
#undef main
#endif

extern int SDL_main(int argc, char *argv[]);

int main(int argc, char *argv[])
{
	return(SDL_main(argc, argv));
}