Default allowed resulution is QXGA

This commit is contained in:
pk-2000 2020-12-25 05:25:56 +02:00 committed by GitHub
parent 90fda2da47
commit 9b7a91075b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -292,10 +292,10 @@ static std::string baseName(const std::string &path)
static void setupScreenSize(Config &conf)
{
if (conf.defScreenW <= 0)
conf.defScreenW = (conf.rgssVersion == 1 ? 640 : 544);
conf.defScreenW = 2048;
if (conf.defScreenH <= 0)
conf.defScreenH = (conf.rgssVersion == 1 ? 480 : 416);
conf.defScreenH = 1536;
}
void Config::readGameINI()