mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 07:50:03 +00:00
(Mednafen SNES) 'Fix' little edian input - still issue with 'hold states'
of buttons
This commit is contained in:
parent
53908ec941
commit
697735e2ff
@ -485,6 +485,9 @@ static void update_input(void)
|
||||
} u;
|
||||
u.s = input_buf[j];
|
||||
input_buf[j] = u.b[0] | u.b[1] << 8;
|
||||
#else
|
||||
input_buf[j][0] = (input_state >> 0) & 0xff;
|
||||
input_buf[j][1] = (input_state >> 8) & 0xff;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user