[Scummvm-git-logs] scummvm master -> 34cbe8c1589bc57eced4b35ac91454cbf4eb9541
aquadran
noreply at scummvm.org
Sat Oct 4 15:51:55 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
34cbe8c158 WINTERMUTE: Make sure load image in case it was unloaded
Commit: 34cbe8c1589bc57eced4b35ac91454cbf4eb9541
https://github.com/scummvm/scummvm/commit/34cbe8c1589bc57eced4b35ac91454cbf4eb9541
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2025-10-04T17:51:51+02:00
Commit Message:
WINTERMUTE: Make sure load image in case it was unloaded
Changed paths:
engines/wintermute/base/gfx/opengl/base_surface_opengl3d.cpp
diff --git a/engines/wintermute/base/gfx/opengl/base_surface_opengl3d.cpp b/engines/wintermute/base/gfx/opengl/base_surface_opengl3d.cpp
index 46b9053c27b..cfe40fa529f 100644
--- a/engines/wintermute/base/gfx/opengl/base_surface_opengl3d.cpp
+++ b/engines/wintermute/base/gfx/opengl/base_surface_opengl3d.cpp
@@ -362,7 +362,7 @@ bool BaseSurfaceOpenGL3D::startPixelOp() {
return true;
}
- if (!_valid) {
+ if (!_valid || (_valid && !_imageData)) {
if (!loadImage()) {
return false;
}
More information about the Scummvm-git-logs
mailing list