SWITCH: Enable gfx filtering by default for better image quality
This commit is contained in:
parent
d78dd5c058
commit
655fea4a6f
1 changed files with 4 additions and 0 deletions
|
@ -49,6 +49,7 @@ void OSystem_Switch::initBackend() {
|
|||
ConfMan.registerDefault("fullscreen", true);
|
||||
ConfMan.registerDefault("aspect_ratio", false);
|
||||
ConfMan.registerDefault("gfx_mode", "2x");
|
||||
ConfMan.registerDefault("filtering", true);
|
||||
ConfMan.registerDefault("output_rate", 48000);
|
||||
ConfMan.registerDefault("touchpad_mouse_mode", true);
|
||||
|
||||
|
@ -64,6 +65,9 @@ void OSystem_Switch::initBackend() {
|
|||
if (!ConfMan.hasKey("gfx_mode")) {
|
||||
ConfMan.set("gfx_mode", "2x");
|
||||
}
|
||||
if (!ConfMan.hasKey("filtering")) {
|
||||
ConfMan.setBool("filtering", true);
|
||||
}
|
||||
if (!ConfMan.hasKey("output_rate")) {
|
||||
ConfMan.setInt("output_rate", 48000);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue