| 48 | } |
| 49 | |
| 50 | void ErrorOverlay::update(const InputState& input) |
| 51 | { |
| 52 | const u64 kDown = input.kDown; |
| 53 | if (button->released() || (kDown & HidNpadButton_A) || (kDown & HidNpadButton_B)) { |
| 54 | screen.removeOverlay(); |
| 55 | } |
| 56 | } |
nothing calls this directly
no test coverage detected