From 21e204cdea8564dace6dfb0abd8e0b034bff64be Mon Sep 17 00:00:00 2001 From: StapleButter Date: Thu, 23 Nov 2017 21:22:47 +0100 Subject: don't pointlessly restrict the window size --- src/libui_sdl/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libui_sdl') 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); -- cgit v1.2.3