Changeset 722
- Timestamp:
- 02/26/08 05:12:21 (7 months ago)
- Files:
-
- trunk/src/death.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/death.c
r715 r722 227 227 228 228 /* 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); 230 230 231 231 /* Allow abort at this point */ 232 if (inkey() == ESCAPE) return;232 (void)anykey(); 233 233 234 234 … … 242 242 show_equip(); 243 243 prt("You are using: -more-", 0, 0); 244 if (inkey() == ESCAPE) return;244 (void)anykey(); 245 245 } 246 246 … … 252 252 show_inven(); 253 253 prt("You are carrying: -more-", 0, 0); 254 if (inkey() == ESCAPE) return;254 (void)anykey(); 255 255 } 256 256 … … 295 295 296 296 /* Wait for it */ 297 if (inkey() == ESCAPE) return;297 (void)anykey(); 298 298 } 299 299 }
