[Scummvm-git-logs] scummvm master -> 05052ea66fc68a7ce7136f1d3718f0747acab312

bluegr noreply at scummvm.org
Thu Nov 21 13:15:19 UTC 2024


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:
05052ea66f AMIGAOS: Revert already default settings


Commit: 05052ea66fc68a7ce7136f1d3718f0747acab312
    https://github.com/scummvm/scummvm/commit/05052ea66fc68a7ce7136f1d3718f0747acab312
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2024-11-21T15:15:16+02:00

Commit Message:
AMIGAOS: Revert already default settings

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 42664321527..7d07d627137 100644
--- a/backends/platform/sdl/amigaos/amigaos.cpp
+++ b/backends/platform/sdl/amigaos/amigaos.cpp
@@ -116,12 +116,6 @@ void OSystem_AmigaOS::initBackend() {
 	}
 	// First time user defaults
 	ConfMan.registerDefault("audio_buffer_size", "2048");
-	ConfMan.registerDefault("fullscreen", true);
-	ConfMan.registerDefault("gfx_mode", "surfacesdl");
-	ConfMan.registerDefault("stretch_mode", "stretch");
-	ConfMan.registerDefault("gui_mode", "antialias");
-	ConfMan.registerDefault("gui_theme", "scummremastered");
-	ConfMan.registerDefault("gui_scale", "125");
 	ConfMan.registerDefault("extrapath", Common::Path("extras/"));
 	ConfMan.registerDefault("iconspath", Common::Path("icons/"));
 	ConfMan.registerDefault("pluginspath", Common::Path("plugins/"));
@@ -131,24 +125,6 @@ void OSystem_AmigaOS::initBackend() {
 	if (!ConfMan.hasKey("audio_buffer_size")) {
 		ConfMan.set("audio_buffer_size", "2048");
 	}
-	if (!ConfMan.hasKey("fullscreen")) {
-		ConfMan.setBool("fullscreen", true);
-	}
-	if (!ConfMan.hasKey("gfx_mode")) {
-		ConfMan.set("gfx_mode", "surfacesdl");
-	}
-	if (!ConfMan.hasKey("stretch_mode")) {
-		ConfMan.set("stretch_mode", "stretch");
-	}
-	if (!ConfMan.hasKey("gui_mode")) {
-		ConfMan.set("gui_mode", "antialias");
-	}
-	if (!ConfMan.hasKey("gui_theme")) {
-		ConfMan.set("gui_theme", "scummremastered");
-	}
-	if (!ConfMan.hasKey("gui_scale")) {
-		ConfMan.set("gui_scale", "125");
-	}
 	if (!ConfMan.hasKey("extrapath")) {
 		ConfMan.setPath("extrapath", "extras/");
 	}




More information about the Scummvm-git-logs mailing list