Mercurial > sdl-ios-xcode
changeset 15:ac67f6758d63
Don't try to register the app if video code is disabled
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Wed, 02 May 2001 19:21:00 +0000 |
parents | c3e9d4a623c1 |
children | 735e5a8696d0 |
files | src/main/win32/SDL_main.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/win32/SDL_main.c Tue May 01 21:12:57 2001 +0000 +++ b/src/main/win32/SDL_main.c Wed May 02 19:21:00 2001 +0000 @@ -160,12 +160,16 @@ atexit(cleanup_output); atexit(SDL_Quit); - /* Create and register our class, then run main code */ +#ifndef DISABLE_VIDEO + /* Create and register our class */ if ( SDL_RegisterApp(appname, CS_BYTEALIGNCLIENT, GetModuleHandle(NULL)) < 0 ) { ShowError("WinMain() error", SDL_GetError()); exit(1); } +#endif /* !DISABLE_VIDEO */ + + /* Run the application main() code */ SDL_main(argc, argv); /* Exit cleanly, calling atexit() functions */