Default allowed resollution QXGA (2048/1536)
Mkxp will be able to guess/handle any game resolution automatically as long is lower than 2048/1536, without adding or editing the game resolution in "mkxp.conf". The actual size of the window will be determined automatically from the "eventhread.cpp" during the initial launch of the game.
This commit is contained in:
parent
e7c3cd6a2f
commit
2f4c775196
|
@ -291,10 +291,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()
|
||||
|
|
Loading…
Reference in New Issue