ANDROIDSDL: set default gfx_mode to 2x

This commit is contained in:
lubomyr 2016-09-18 14:06:49 +02:00
parent cc945d6105
commit c325f813b9

View File

@ -38,6 +38,9 @@ void OSystem_ANDROIDSDL::initBackend() {
if (!ConfMan.hasKey("browser_lastpath"))
ConfMan.set("browser_lastpath", "/storage");
if (!ConfMan.hasKey("gfx_mode"))
ConfMan.set("gfx_mode", "2x");
// Call parent implementation of this method
OSystem_POSIX::initBackend();
}