Merge pull request #830 from lubomyr/master

ANDROIDSDL: set default gfx_mode to 2x
This commit is contained in:
Eugene Sandulenko 2016-09-18 17:39:22 +02:00 committed by GitHub
commit e51dcbb153

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();
}