mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
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 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);
|
||||
|
Loading…
Reference in New Issue
Block a user