# HG changeset patch # User John "Elwin" Edwards # Date 1347206111 25200 # Node ID ae7643e1194b6e1d8767ad12a3074e7112245359 # Parent ad2cb9a07aaaa0cc936decf21551d33f3f924d67 arogue5: fix "More" prompt appearing in the wrong place. The magic and monster detection routines printed "--More--" to cw instead of msgw, making it appear at the @-sign instead of on the top line. diff -r ad2cb9a07aaa -r ae7643e1194b arogue5/potions.c --- a/arogue5/potions.c Sat Sep 08 22:05:05 2012 -0700 +++ b/arogue5/potions.c Sun Sep 09 08:55:11 2012 -0700 @@ -394,7 +394,7 @@ if (mlist != NULL) { msg("You begin to sense the presence of monsters."); - waddstr(cw, morestr); + waddstr(msgw, morestr); overlay(mw, cw); draw(cw); wait_for(cw,' '); @@ -460,7 +460,7 @@ } if (show) { msg("You sense the presence of magic on this level."); - waddstr(cw, morestr); + waddstr(msgw, morestr); overlay(hw,cw); draw(cw); wait_for(cw,' ');