summaryrefslogtreecommitdiff
path: root/src/video/cocoa/cocoa_ogl.mm
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2021-03-08 15:20:49 +0100
committerMichael Lutz <michi@icosahedron.de>2021-03-08 15:43:22 +0100
commit25656a10cb237fc1be7dac3e2207a1986633bf06 (patch)
treee989d2081c2dbcf025ac830843fb382701133d73 /src/video/cocoa/cocoa_ogl.mm
parentae1f7bd6954176c02effe4048e8b9fe900038389 (diff)
downloadopenttd-25656a10cb237fc1be7dac3e2207a1986633bf06.tar.xz
Fix #8808: [OSX, OpenGL] Crash on switching blitters due to double-mapping the video buffer.
Diffstat (limited to 'src/video/cocoa/cocoa_ogl.mm')
-rw-r--r--src/video/cocoa/cocoa_ogl.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/cocoa/cocoa_ogl.mm b/src/video/cocoa/cocoa_ogl.mm
index 915f43779..c75de1e04 100644
--- a/src/video/cocoa/cocoa_ogl.mm
+++ b/src/video/cocoa/cocoa_ogl.mm
@@ -265,7 +265,7 @@ void VideoDriver_CocoaOpenGL::AllocateBackingStore(bool force)
CGLSetCurrentContext(this->gl_context);
NSRect frame = [ this->cocoaview getRealRect:[ this->cocoaview frame ] ];
OpenGLBackend::Get()->Resize(frame.size.width, frame.size.height, force);
- _screen.dst_ptr = this->GetVideoPointer();
+ if (this->buffer_locked) _screen.dst_ptr = this->GetVideoPointer();
this->dirty_rect = {};
/* Redraw screen */