[Scummvm-git-logs] scummvm master -> eb2df1a3552635651750d4ddf03a20f0b56ca4dd

AndywinXp noreply at scummvm.org
Sun Aug 7 06:32:33 UTC 2022


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:
eb2df1a355 SCUMM: Set default value for _useOriginalGUI to true


Commit: eb2df1a3552635651750d4ddf03a20f0b56ca4dd
    https://github.com/scummvm/scummvm/commit/eb2df1a3552635651750d4ddf03a20f0b56ca4dd
Author: AndywinXp (andywinxp at gmail.com)
Date: 2022-08-07T08:32:25+02:00

Commit Message:
SCUMM: Set default value for _useOriginalGUI to true

Every access to this variable is done through isUsingOriginalGUI(), which
will currently yield false for every game version lower than 8.

Changed paths:
    engines/scumm/scumm.h


diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 0d0e6934cf0..3616d2580fa 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -387,7 +387,7 @@ public:
 	ResourceManager *_res = nullptr;
 
 	bool _enableEnhancements = false;
-	bool _useOriginalGUI = false;
+	bool _useOriginalGUI = true;
 	bool _enableAudioOverride = false;
 
 protected:




More information about the Scummvm-git-logs mailing list