don't pointlessly restrict the window size
This commit is contained in:
parent
85c375cce7
commit
21e204cdea
|
@ -1112,8 +1112,8 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
int w = Config::WindowWidth;
|
int w = Config::WindowWidth;
|
||||||
int h = Config::WindowHeight;
|
int h = Config::WindowHeight;
|
||||||
if (w < 256) w = 256;
|
//if (w < 256) w = 256;
|
||||||
if (h < 384) h = 384;
|
//if (h < 384) h = 384;
|
||||||
|
|
||||||
MainWindow = uiNewWindow("melonDS " MELONDS_VERSION, w, h, 1, 1);
|
MainWindow = uiNewWindow("melonDS " MELONDS_VERSION, w, h, 1, 1);
|
||||||
uiWindowOnClosing(MainWindow, OnCloseWindow, NULL);
|
uiWindowOnClosing(MainWindow, OnCloseWindow, NULL);
|
||||||
|
|
Loading…
Reference in New Issue