[Scummvm-git-logs] scummvm master -> 08b79f77c3377a0a04df53f23d4d877ad0162476
aquadran
noreply at scummvm.org
Sun Feb 12 17:32:09 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
08b79f77c3 HPL1: Corrected argument passing to TinyGL context creation
Commit: 08b79f77c3377a0a04df53f23d4d877ad0162476
https://github.com/scummvm/scummvm/commit/08b79f77c3377a0a04df53f23d4d877ad0162476
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2023-02-12T18:32:03+01:00
Commit Message:
HPL1: Corrected argument passing to TinyGL context creation
Changed paths:
engines/hpl1/engine/impl/low_level_graphics_tgl.cpp
diff --git a/engines/hpl1/engine/impl/low_level_graphics_tgl.cpp b/engines/hpl1/engine/impl/low_level_graphics_tgl.cpp
index 13c78a0bc7e..5c1c04329e8 100644
--- a/engines/hpl1/engine/impl/low_level_graphics_tgl.cpp
+++ b/engines/hpl1/engine/impl/low_level_graphics_tgl.cpp
@@ -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();
More information about the Scummvm-git-logs
mailing list