Skip to content

Commit

Permalink
AMIGAOS: Remove local aspect ratio setting
Browse files Browse the repository at this point in the history
  • Loading branch information
raziel- authored and lotharsm committed Feb 22, 2024
1 parent 7afb170 commit d6b08d4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions backends/platform/sdl/amigaos/amigaos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ void OSystem_AmigaOS::initBackend() {
}
// First time user defaults
ConfMan.registerDefault("audio_buffer_size", "2048");
ConfMan.registerDefault("aspect_ratio", true);
ConfMan.registerDefault("fullscreen", true);
ConfMan.registerDefault("gfx_mode", "surfacesdl");
ConfMan.registerDefault("stretch_mode", "stretch");
Expand All @@ -114,9 +113,6 @@ void OSystem_AmigaOS::initBackend() {
if (!ConfMan.hasKey("audio_buffer_size")) {
ConfMan.set("audio_buffer_size", "2048");
}
if (!ConfMan.hasKey("aspect_ratio")) {
ConfMan.setBool("aspect_ratio", true);
}
if (!ConfMan.hasKey("fullscreen")) {
ConfMan.setBool("fullscreen", true);
}
Expand Down

0 comments on commit d6b08d4

Please sign in to comment.