[Scummvm-git-logs] scummvm branch-2-7 -> 4f32c1fd8ed613ea2caac342293fd02f81a87755

aquadran noreply at scummvm.org
Sun Feb 12 17:32:57 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:
4f32c1fd8e HPL1: Corrected argument passing to TinyGL context creation


Commit: 4f32c1fd8ed613ea2caac342293fd02f81a87755
    https://github.com/scummvm/scummvm/commit/4f32c1fd8ed613ea2caac342293fd02f81a87755
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2023-02-12T18:32:34+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 1307c1dc0de..702dff3d7a1 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