don't pointlessly restrict the window size

This commit is contained in:
StapleButter 2017-11-23 21:22:47 +01:00
parent 85c375cce7
commit 21e204cdea

View File

@ -1112,8 +1112,8 @@ int main(int argc, char** argv)
int w = Config::WindowWidth;
int h = Config::WindowHeight;
if (w < 256) w = 256;
if (h < 384) h = 384;
//if (w < 256) w = 256;
//if (h < 384) h = 384;
MainWindow = uiNewWindow("melonDS " MELONDS_VERSION, w, h, 1, 1);
uiWindowOnClosing(MainWindow, OnCloseWindow, NULL);