In general, you want to manually clean things up. So if the user clicks "exit", you set quit to true and let it fall through so you can call SDL_Quit, etc. This way you can tell the difference between a clean exit and a not-clean exit.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
MarauderIIC wrote:In general, you want to manually clean things up. So if the user clicks "exit", you set quit to true and let it fall through so you can call SDL_Quit, etc. This way you can tell the difference between a clean exit and a not-clean exit.
Oh. That makes complete sense now that you say it haha.
This breaks structured programming rules (one entry, one exit), which you shouldn't just break all willy-nilly, but are rules that I regard as more breakable than other rules. Besides, [user quits] -- if that's not a variable somehow, why not just have while (![user quits]) ?
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.