| 57 | void NotificationScreen::pause() {} |
| 58 | |
| 59 | void NotificationScreen::resume() |
| 60 | { |
| 61 | if (!config().getBool(GameEvent::optionsMap.at(eventType))) |
| 62 | { |
| 63 | fw().stageQueueCommand({StageCmd::Command::POP}); |
| 64 | menuform->findControlTyped<CheckBox>("CHECKBOX_ALWAYS_PAUSE")->setChecked(false); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | void NotificationScreen::finish() |
| 69 | { |
nothing calls this directly
no test coverage detected