| 982 | } |
| 983 | |
| 984 | static void |
| 985 | continueRecover() |
| 986 | { |
| 987 | restore_savefile(); |
| 988 | |
| 989 | /* update the thermometer */ |
| 990 | if (in.Dialog && !(in.Recover % 4)) |
| 991 | itemizeThermo(invalItem); |
| 992 | |
| 993 | if (in.Recover <= MAX_RECOVER_COUNT) |
| 994 | return; |
| 995 | |
| 996 | endRecover(); |
| 997 | |
| 998 | if (saveRezStrings()) |
| 999 | return; |
| 1000 | |
| 1001 | note(noErr, alidNote, "\pOK: Recovery succeeded"); |
| 1002 | } |
| 1003 | |
| 1004 | /* no messages from here (since we might be quitting) */ |
| 1005 | static void |
no test coverage detected