[Scummvm-git-logs] scummvm master -> 7ad6ec11786c0c1c20e96368bdf78553d55e4a21
neuromancer
noreply at scummvm.org
Mon Mar 20 11:58:35 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:
7ad6ec1178 FREESCAPE: default to TinyGL if OpenGL is not available
Commit: 7ad6ec11786c0c1c20e96368bdf78553d55e4a21
https://github.com/scummvm/scummvm/commit/7ad6ec11786c0c1c20e96368bdf78553d55e4a21
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2023-03-20T12:54:42+01:00
Commit Message:
FREESCAPE: default to TinyGL if OpenGL is not available
Changed paths:
engines/freescape/gfx.cpp
diff --git a/engines/freescape/gfx.cpp b/engines/freescape/gfx.cpp
index b31730da1f5..8be8944929c 100644
--- a/engines/freescape/gfx.cpp
+++ b/engines/freescape/gfx.cpp
@@ -942,8 +942,7 @@ Graphics::RendererType determinateRenderType() {
#endif
#if defined(USE_TINYGL)
- if (desiredRendererType == Graphics::kRendererTypeTinyGL)
- return desiredRendererType;
+ return Graphics::kRendererTypeTinyGL;
#endif
return Graphics::kRendererTypeDefault;
More information about the Scummvm-git-logs
mailing list