| 9673 | } |
| 9674 | |
| 9675 | bool cFodder::Menu_Draw(const std::function<void()> pButtonHandler) { |
| 9676 | |
| 9677 | // Button Pressed? |
| 9678 | if (mButtonPressLeft) |
| 9679 | pButtonHandler(); |
| 9680 | |
| 9681 | // Exit Time? |
| 9682 | if (mDemo_ExitMenu > 0 || mPhase_Aborted || mCustom_ExitMenu) |
| 9683 | return true; |
| 9684 | |
| 9685 | if (mSurface->isPaletteAdjusting()) |
| 9686 | mSurface->palette_FadeTowardNew(); |
| 9687 | |
| 9688 | return false; |
| 9689 | } |
| 9690 | |
| 9691 | void cFodder::Demo_Quiz_ShowScreen(const char* pFilename) { |
| 9692 |
nothing calls this directly
no test coverage detected