summaryrefslogtreecommitdiff
path: root/src/video/win32_v.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/win32_v.cpp')
-rw-r--r--src/video/win32_v.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp
index 467478461..08ab27c53 100644
--- a/src/video/win32_v.cpp
+++ b/src/video/win32_v.cpp
@@ -1305,6 +1305,12 @@ const char *VideoDriver_Win32OpenGL::Start(const StringList &param)
}
this->ClientSizeChanged(this->width, this->height, true);
+ /* We should have a valid screen buffer now. If not, something went wrong and we should abort. */
+ if (_screen.dst_ptr == nullptr) {
+ this->Stop();
+ _cur_resolution = old_res;
+ return "Can't get pointer to screen buffer";
+ }
MarkWholeScreenDirty();