add support for non-resizable windows

This commit is contained in:
StapleButter
2017-10-02 23:26:25 +02:00
parent f8b63759f7
commit dad0e6b6e8
5 changed files with 10 additions and 7 deletions

View File

@ -283,7 +283,7 @@ void Open()
memcpy(keymap, Config::KeyMapping, sizeof(int)*12);
memcpy(joymap, Config::JoyMapping, sizeof(int)*12);
win = uiNewWindow("Input config - melonDS", 600, 400, 0);
win = uiNewWindow("Input config - melonDS", 600, 400, 0, 0);
uiWindowSetMargined(win, 1);
uiWindowOnClosing(win, OnCloseWindow, NULL);
uiWindowOnGetFocus(win, OnGetFocus, NULL);