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.
This commit is contained in:
John "Elwin" Edwards 2012-09-09 08:55:11 -07:00
parent 8b252e70a9
commit cd74a20cc9

View file

@ -394,7 +394,7 @@ bool is_potion;
if (mlist != NULL) if (mlist != NULL)
{ {
msg("You begin to sense the presence of monsters."); msg("You begin to sense the presence of monsters.");
waddstr(cw, morestr); waddstr(msgw, morestr);
overlay(mw, cw); overlay(mw, cw);
draw(cw); draw(cw);
wait_for(cw,' '); wait_for(cw,' ');
@ -460,7 +460,7 @@ bool is_potion;
} }
if (show) { if (show) {
msg("You sense the presence of magic on this level."); msg("You sense the presence of magic on this level.");
waddstr(cw, morestr); waddstr(msgw, morestr);
overlay(hw,cw); overlay(hw,cw);
draw(cw); draw(cw);
wait_for(cw,' '); wait_for(cw,' ');