great success

This commit is contained in:
Zeno Rogue 2022-08-25 10:28:26 +02:00
parent 53839be194
commit 4947b8c1b5
1 changed files with 6 additions and 1 deletions

View File

@ -287,7 +287,12 @@ int arg::readCommon() {
View = Id;
}
else if(argis("-exit")) {
PHASE(3); println(hlog, "Success.\n");
PHASE(3);
int t = SDL_GetTicks();
if(t > 1800 * 1000)
println(hlog, "Great Success!\n");
else
println(hlog, "Success.\n");
exit(0);
}