Quick adjustment to the test program to handle a case I didn't think of until now (our uiUninit() unintentionally quitting the program; who knows what releasing NSApp will do?).

This commit is contained in:
Pietro Gagliardi 2015-05-09 13:29:39 -04:00
parent 4122777505
commit 03cf0845ef
1 changed files with 1 additions and 0 deletions

View File

@ -88,5 +88,6 @@ int main(int argc, char *argv[])
uiMain();
printf("after uiMain()\n");
uiUninit();
printf("after uiUninit()\n");
return 0;
}