Revert "restore.c globals moved to instance_globals."

This reverts commit 865c4d5a7d.
This commit is contained in:
nhmall
2018-11-23 22:16:59 -05:00
parent 04fe16d938
commit 053baa8274
6 changed files with 40 additions and 63 deletions
+2 -1
View File
@@ -3171,6 +3171,7 @@ void
tty_cliparound(x, y)
int x, y;
{
extern boolean restoring;
int oldx = clipx, oldy = clipy;
if (!clipping)
@@ -3190,7 +3191,7 @@ int x, y;
clipy = clipymax - (LI - 3);
}
if (clipx != oldx || clipy != oldy) {
if (on_level(&u.uz0, &u.uz) && !g.restoring)
if (on_level(&u.uz0, &u.uz) && !restoring)
(void) doredraw();
}
}