General: Resolve -Wcomma warnings

Resolves compilation warnings by just making the chained statements
their own separate statements.
This commit is contained in:
Lioncash 2020-08-23 15:48:38 -04:00
parent 4dc553e72a
commit cadf85bc58
1 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,13 @@
namespace urde {
CGameOptionsTouchBar::EAction CGameOptionsTouchBar::PopAction() { return EAction::None; }
void CGameOptionsTouchBar::GetSelection(int& left, int& right, int& value) { left = -1, right = -1, value = -1; }
void CGameOptionsTouchBar::GetSelection(int& left, int& right, int& value) {
left = -1;
right = -1;
value = -1;
}
void CGameOptionsTouchBar::SetSelection([[maybe_unused]] int left, [[maybe_unused]] int right, [[maybe_unused]] int value) {
}