Browse Source

WinRT: fixed a crash that occurred on device rotation (oops!)

David Ludwig 12 năm trước cách đây
mục cha
commit
fa229f3790
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/video/winrt/SDL_winrtvideo.cpp

+ 1 - 1
src/video/winrt/SDL_winrtvideo.cpp

@@ -125,7 +125,7 @@ WINRT_CreateDevice(int devindex)
     device->PumpEvents = WINRT_PumpEvents;
     device->GetWindowWMInfo = WINRT_GetWindowWMInfo;
     device->free = WINRT_DeleteDevice;
-    WINRT_GlobalSDLVideoDevice = NULL;
+    WINRT_GlobalSDLVideoDevice = device;
 
     return device;
 }