mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-23 12:28:07 +01:00
Fix build issue.
This commit is contained in:
parent
282ac22a46
commit
106fb03bb0
1 changed files with 2 additions and 2 deletions
|
@ -661,8 +661,8 @@ int GetAnalogActionOrigins( InputHandle_t inputHandle, InputActionSetHandle_t ac
|
|||
if (a == map->second.active_analog.end()) return 0;
|
||||
|
||||
int count = 0;
|
||||
for (auto a: a->second.first) {
|
||||
switch (a) {
|
||||
for (auto b: a->second.first) {
|
||||
switch (b) {
|
||||
case TRIGGER_LEFT:
|
||||
originsOut[count] = k_EInputActionOrigin_XBox360_LeftTrigger_Pull;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue