From cd74a20cc9daf7879c7fcafab08bf91ad77f124f Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sun, 9 Sep 2012 08:55:11 -0700 Subject: [PATCH] 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. --- arogue5/potions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arogue5/potions.c b/arogue5/potions.c index 2a6565a..a25ec34 100644 --- a/arogue5/potions.c +++ b/arogue5/potions.c @@ -394,7 +394,7 @@ bool is_potion; 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 @@ bool is_potion; } 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,' ');