# HG changeset patch # User John "Elwin" Edwards # Date 1434125356 14400 # Node ID 89deb1197a2d2af6689d9093817f02f486bd4375 # Parent 600873555ec09abbd0053bd4808e0986c09e9fa3 arogue7: fix a display bug when viewing inventory after restoring. The restore() function displayed a status message via wprintw() instead of using the msg() functions. If the inventory was then viewed before a call to msg(), msgw would obscure the first lines of the inventory list. There are surely more bugs related to messages. diff -r 600873555ec0 -r 89deb1197a2d arogue7/save.c --- a/arogue7/save.c Mon Jun 08 10:01:25 2015 -0400 +++ b/arogue7/save.c Fri Jun 12 12:09:16 2015 -0400 @@ -239,7 +239,7 @@ if (lines > 24) lines = 24; mpos = 0; - mvwprintw(msgw, 0, 0, "%s: %s", file, ctime(&sbuf2.st_mtime)); + msg("%s: %s", file, ctime(&sbuf2.st_mtime)); /* * defeat multiple restarting from the same place