HPL1: Corrected argument passing to TinyGL context creation

This commit is contained in:
Paweł Kołodziejski 2023-02-12 18:32:03 +01:00
parent 744cce4cfe
commit 4f32c1fd8e

View file

@ -354,7 +354,7 @@ bool LowLevelGraphicsTGL::Init(int alWidth, int alHeight, int alBpp, int abFulls
mlMultisampling = alMultisampling;
initGraphics(alWidth, alHeight, nullptr);
TinyGL::createContext(alWidth, alHeight, mpPixelFormat, 256, false, 60 * 1024 * 1024);
TinyGL::createContext(alWidth, alHeight, mpPixelFormat, 256, false, true, 60 * 1024 * 1024);
SetupGL();
ShowCursor(false);
g_system->updateScreen();