mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
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:
committed by
Misa Elizabeth Kai
parent
e58fd606cf
commit
41d5e688e9
@@ -1152,7 +1152,7 @@ static void menurender(void)
|
||||
{
|
||||
font::print(PR_2X | PR_CEN, -1, 30, loc::gettext("Checkpoint Saving"), tr, tg, tb);
|
||||
int next_y = font::print_wrap(PR_CEN, -1, 65, loc::gettext("Toggle if checkpoints should save the game."), tr, tg, tb);
|
||||
if (game.checkpoint_saving)
|
||||
if (!game.checkpoint_saving)
|
||||
{
|
||||
font::print_wrap(PR_CEN, -1, next_y, loc::gettext("Checkpoint saving is OFF"), tr / 2, tg / 2, tb / 2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user