#overview command */
| 3291 | |
| 3292 | /* #overview command */ |
| 3293 | int |
| 3294 | dooverview(void) |
| 3295 | { |
| 3296 | /* game in progress; 'why' is 0 for normal #overview, -1 if user prefixed |
| 3297 | #overview with 'm'; 'reason' for end of game isn't applicable: use 0 */ |
| 3298 | show_overview(iflags.menu_requested ? -1 : 0, 0); |
| 3299 | iflags.menu_requested = FALSE; |
| 3300 | return ECMD_OK; |
| 3301 | } |
| 3302 | |
| 3303 | /* called for #overview or for end of game disclosure */ |
| 3304 | void |
no test coverage detected