Remove touch() return values from screen hierarchy

This commit is contained in:
Henrik Rydgård
2023-01-10 10:12:37 +01:00
parent fdfc4cbe40
commit a3a949f5e6
10 changed files with 18 additions and 28 deletions
+1 -2
View File
@@ -672,7 +672,7 @@ UI::EventReturn AnalogSetupScreen::OnResetToDefaults(UI::EventParams &e) {
return UI::EVENT_DONE;
}
bool TouchTestScreen::touch(const TouchInput &touch) {
void TouchTestScreen::touch(const TouchInput &touch) {
UIDialogScreenWithGameBackground::touch(touch);
if (touch.flags & TOUCH_DOWN) {
bool found = false;
@@ -721,7 +721,6 @@ bool TouchTestScreen::touch(const TouchInput &touch) {
WARN_LOG(SYSTEM, "Touch release without touch down");
}
}
return true;
}
void TouchTestScreen::CreateViews() {