diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-11-23 21:22:47 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-11-23 21:22:47 +0100 |
commit | 21e204cdea8564dace6dfb0abd8e0b034bff64be (patch) | |
tree | f6e4269672fca7f60442d2a731cda21435c34c4e | |
parent | 85c375cce7e56e9e5962e051adaf6d1afc4ed813 (diff) |
don't pointlessly restrict the window size
-rw-r--r-- | src/libui_sdl/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libui_sdl/main.cpp b/src/libui_sdl/main.cpp index 1b5dfb3..a644e2f 100644 --- a/src/libui_sdl/main.cpp +++ b/src/libui_sdl/main.cpp @@ -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); |