[Scummvm-git-logs] scummvm master -> bce0eeb91c934d71452d12965be65da187435205
bluegr
noreply at scummvm.org
Sun May 14 20:07:14 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:
bce0eeb91c AMIGAOS: amigaos.cpp - Set default gfxmode to "surfacesdl"
Commit: bce0eeb91c934d71452d12965be65da187435205
https://github.com/scummvm/scummvm/commit/bce0eeb91c934d71452d12965be65da187435205
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2023-05-14T23:07:10+03:00
Commit Message:
AMIGAOS: amigaos.cpp - Set default gfxmode to "surfacesdl"
Changed paths:
backends/platform/sdl/amigaos/amigaos.cpp
diff --git a/backends/platform/sdl/amigaos/amigaos.cpp b/backends/platform/sdl/amigaos/amigaos.cpp
index 1159b624e9e..ac45cce1afa 100644
--- a/backends/platform/sdl/amigaos/amigaos.cpp
+++ b/backends/platform/sdl/amigaos/amigaos.cpp
@@ -103,7 +103,7 @@ void OSystem_AmigaOS::initBackend() {
ConfMan.registerDefault("audio_buffer_size", "2048");
ConfMan.registerDefault("aspect_ratio", true);
ConfMan.registerDefault("fullscreen", true);
- ConfMan.registerDefault("gfx_mode", "opengl");
+ ConfMan.registerDefault("gfx_mode", "surfacesdl");
ConfMan.registerDefault("stretch_mode", "stretch");
ConfMan.registerDefault("gui_mode", "antialias");
ConfMan.registerDefault("gui_theme", "scummremastered");
@@ -121,7 +121,7 @@ void OSystem_AmigaOS::initBackend() {
ConfMan.setBool("fullscreen", true);
}
if (!ConfMan.hasKey("gfx_mode")) {
- ConfMan.set("gfx_mode", "opengl");
+ ConfMan.set("gfx_mode", "surfacesdl");
}
if (!ConfMan.hasKey("stretch_mode")) {
ConfMan.set("stretch_mode", "stretch");
More information about the Scummvm-git-logs
mailing list