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

@ -65,7 +65,7 @@ void OnOk(uiButton* btn, void* blarg)
void Open()
{
win = uiNewWindow("Emu settings - melonDS", 300, 200, 0);
win = uiNewWindow("Emu settings - melonDS", 300, 200, 0, 0);
uiWindowSetMargined(win, 1);
uiWindowOnClosing(win, OnCloseWindow, NULL);