🧹 SDL1.2: Remove unimplemented SDL_*Window backports

Guard around SDL version at call site instead.
This commit is contained in:
Gleb Mazovetskiy 2021-04-18 14:46:34 +01:00 committed by Anders Jenbo
commit 91f8267db9
4 changed files with 6 additions and 27 deletions

View file

@ -224,7 +224,9 @@ void init_create_window()
app_fatal("Unable to create main window");
dx_init();
gbActive = true;
#ifndef USE_SDL1
SDL_DisableScreenSaver();
#endif
}
void MainWndProc(UINT Msg, WPARAM wParam, LPARAM lParam)