Fix menu option, show textbox when save failed

In my last commit, I accidentally inverted whether the description says
ON or OFF.
This commit is contained in:
NyakoFox
2024-09-26 13:32:46 -03:00
committed by Misa Elizabeth Kai
parent e58fd606cf
commit 41d5e688e9
5 changed files with 23 additions and 7 deletions
+5
View File
@@ -2755,6 +2755,11 @@ bool entityclass::updateentities( int i )
bool success = game.savequick();
game.gamesaved = success;
game.gamesavefailed = !success;
if (game.gamesavefailed) {
game.show_save_fail();
graphics.textboxapplyposition();
}
}
}
break;