diff options
-rw-r--r-- | video/win32_v.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/video/win32_v.c b/video/win32_v.c index 01e3c0cd8..3ecda2528 100644 --- a/video/win32_v.c +++ b/video/win32_v.c @@ -656,6 +656,10 @@ static const char *Win32GdiStart(const char * const *parm) static void Win32GdiStop(void) { + DeleteObject(_wnd.gdi_palette); + DeleteObject(_wnd.dib_sect); + DestroyWindow(_wnd.main_wnd); + if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0); if (_double_size) { _cur_resolution[0] *= 2; @@ -663,9 +667,6 @@ static void Win32GdiStop(void) } MyShowCursor(true); - DeleteObject(_wnd.gdi_palette); - DeleteObject(_wnd.dib_sect); - DestroyWindow(_wnd.main_wnd); } // simple upscaler by 2 |