mirror of https://github.com/AxioDL/metaforce.git
General: Resolve -Wcomma warnings
Resolves compilation warnings by just making the chained statements their own separate statements.
This commit is contained in:
parent
4dc553e72a
commit
cadf85bc58
|
@ -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) {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue