1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-31 19:36:16 +00:00

CLI -exit now uses println not printf

This commit is contained in:
Zeno Rogue 2022-08-13 22:40:49 +02:00
parent 41ccb86c8c
commit 0eed6a03d4

View File

@ -287,7 +287,7 @@ int arg::readCommon() {
View = Id;
}
else if(argis("-exit")) {
PHASE(3); printf("Success.\n");
PHASE(3); println(hlog, "Success.\n");
exit(0);
}