diff options
Diffstat (limited to 'textscreen')
-rw-r--r-- | textscreen/txt_sdl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c index 1bc42d7c..6cfee614 100644 --- a/textscreen/txt_sdl.c +++ b/textscreen/txt_sdl.c @@ -142,6 +142,9 @@ static void ChooseFont(void) if (modes == NULL || modes == (SDL_Rect **) -1 || *modes == NULL) { +#ifdef _WIN32_WCE + font = &small_font; +#endif return; } @@ -166,7 +169,10 @@ static void ChooseFont(void) int TXT_Init(void) { - SDL_InitSubSystem(SDL_INIT_VIDEO); + if (SDL_InitSubSystem(SDL_INIT_VIDEO) < 0) + { + return 0; + } ChooseFont(); |