Hey everyone, I'm new to Dark GDK, and branching off of the "Terrains" tutorial included I've made a 3D movement engine, with gravity, and with a main menu. At the start of the game, I use this code to run the game in fullscreen:
dbSyncOn();
dbSyncRate(60);
dbSetWindowOff();
dbMaximizeWindow();
dbHideMouse();
And that works, so when I run the game I also tried to minimize and then maximize the game to see if it was possible for the game to be minimized and then come back up with no problems. And this worked my first attempt, I minimized the game, then pulled it back up no problem, this attempt was made while I was in the main menu (which currently only uses dbText, and just says "Press enter to continue"), my second attempt I made was in-game. At this point it was all 3D stuff, with a camera and a terrain object, once I minimized the game, and pulled it back up, the game stopped responding. This is the same result each time I try it.
Am I doing something wrong? Thanks so much!