mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
In undo/redo, always print the revision that got _restored_.
git-svn-id: https://svn.eduke32.com/eduke32@2491 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5246f17169
commit
4412d5729e
1 changed files with 2 additions and 2 deletions
|
@ -7528,12 +7528,12 @@ static void Keys2d(void)
|
|||
if (eitherSHIFT)
|
||||
{
|
||||
if (map_undoredo(1)) message("Nothing to redo!");
|
||||
else message("Restored revision %d",map_revision-1);
|
||||
else message("Redo: restored revision %d", map_revision-1);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (map_undoredo(0)) message("Nothing to undo!");
|
||||
else message("Revision %d undone",map_revision);
|
||||
else message("Undo: restored revision %d", map_revision-1);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue