[Scummvm-git-logs] scummvm master -> 630207d38bd9f807c9604dc48c7208f9bb0e98a0
bluegr
noreply at scummvm.org
Tue May 24 20:38:08 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:
630207d38b PS3: Properly init the fullscreen and aspect_ratio config keys
Commit: 630207d38bd9f807c9604dc48c7208f9bb0e98a0
https://github.com/scummvm/scummvm/commit/630207d38bd9f807c9604dc48c7208f9bb0e98a0
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-05-24T23:38:04+03:00
Commit Message:
PS3: Properly init the fullscreen and aspect_ratio config keys
As done in the PSP2, Android and Switch ports.
Fix inconsistent reported state for the Aspect Ratio setting on PS3
(similar to Trac#11743 for Android).
Changed paths:
backends/platform/sdl/ps3/ps3.cpp
diff --git a/backends/platform/sdl/ps3/ps3.cpp b/backends/platform/sdl/ps3/ps3.cpp
index 94b816e47ee..ec4541b7031 100644
--- a/backends/platform/sdl/ps3/ps3.cpp
+++ b/backends/platform/sdl/ps3/ps3.cpp
@@ -88,6 +88,10 @@ void OSystem_PS3::initBackend() {
ConfMan.registerDefault("fullscreen", true);
ConfMan.registerDefault("aspect_ratio", true);
+ ConfMan.setBool("fullscreen", true);
+ if (!ConfMan.hasKey("aspect_ratio"))
+ ConfMan.setBool("aspect_ratio", true);
+
// Create the savefile manager
if (_savefileManager == 0)
_savefileManager = new DefaultSaveFileManager(PREFIX "/saves");
More information about the Scummvm-git-logs
mailing list