Changeset 722

Show
Ignore:
Timestamp:
02/26/08 05:12:21 (7 months ago)
Author:
takkaria
Message:

Fix a redraw issue in the character death sequence.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/death.c

    r715 r722  
    227227 
    228228        /* Prompt for inventory */ 
    229         prt("Hit any key to see more information (ESC to abort): ", 0, 0); 
     229        prt("Hit any key to see more information: ", 0, 0); 
    230230 
    231231        /* Allow abort at this point */ 
    232         if (inkey() == ESCAPE) return
     232        (void)anykey()
    233233 
    234234 
     
    242242                show_equip(); 
    243243                prt("You are using: -more-", 0, 0); 
    244                 if (inkey() == ESCAPE) return
     244                (void)anykey()
    245245        } 
    246246 
     
    252252                show_inven(); 
    253253                prt("You are carrying: -more-", 0, 0); 
    254                 if (inkey() == ESCAPE) return
     254                (void)anykey()
    255255        } 
    256256 
     
    295295 
    296296                        /* Wait for it */ 
    297                         if (inkey() == ESCAPE) return
     297                        (void)anykey()
    298298                } 
    299299        }