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:
parent
8b252e70a9
commit
cd74a20cc9
1 changed files with 2 additions and 2 deletions
|
|
@ -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,' ');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue