Skip to content

Commit

Permalink
Merge pull request #17570 from hrydgard/fix-volume-keys
Browse files Browse the repository at this point in the history
Fix issue with volume keys in the app UI
  • Loading branch information
hrydgard committed Jun 12, 2023
2 parents 5ae9c9c + bb40bae commit 2ac7cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/UI/UIScreen.cpp
Expand Up @@ -127,7 +127,7 @@ bool UIScreen::UnsyncKey(const KeyInput &key) {
ev.type = QueuedEventType::KEY;
ev.key = key;
eventQueue_.push_back(ev);
return true;
return retval;
}

void UIScreen::update() {
Expand Down

0 comments on commit 2ac7cc3

Please sign in to comment.