mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Global: Cleanup virtual/override specifiers.
Also missing virtual destructors, hidden non-overrides, etc.
This commit is contained in:
@@ -61,7 +61,7 @@ class DisplayLayoutBackground : public UI::View {
|
||||
public:
|
||||
DisplayLayoutBackground(UI::ChoiceStrip *mode, UI::LayoutParams *layoutParams) : UI::View(layoutParams), mode_(mode) {}
|
||||
|
||||
bool Touch(const TouchInput &touch) {
|
||||
bool Touch(const TouchInput &touch) override {
|
||||
int mode = mode_ ? mode_->GetSelection() : 0;
|
||||
|
||||
if ((touch.flags & TOUCH_MOVE) != 0 && dragging_) {
|
||||
|
||||
Reference in New Issue
Block a user