[ion] Don't set the window title when screen only

Prevents the web simulator from overriding the HTML page's title
This commit is contained in:
Romain Goyet
2021-03-03 12:35:34 -05:00
parent 23f3407267
commit 30cfa022d1

View File

@@ -29,7 +29,11 @@ void init() {
}
sWindow = SDL_CreateWindow(
#if EPSILON_SDL_SCREEN_ONLY
nullptr,
#else
"Epsilon",
#endif
SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED,
#if EPSILON_SDL_SCREEN_ONLY