mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Move a return statement to the correct position.
This commit is contained in:
parent
3d906a1471
commit
c65734c33a
@ -106,7 +106,7 @@ void Event::Add(std::function<EventReturn(EventParams&)> func) {
|
||||
|
||||
// Call this from input thread or whatever, it doesn't matter
|
||||
void Event::Trigger(EventParams &e) {
|
||||
EventTriggered(this, e);
|
||||
EventTriggered(this, e);
|
||||
}
|
||||
|
||||
// Call this from UI thread
|
||||
@ -160,8 +160,8 @@ bool View::SetFocus() {
|
||||
SetFocusedView(this);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void Clickable::Click() {
|
||||
|
Loading…
Reference in New Issue
Block a user