mirror of
https://github.com/libretro/beetle-ngp-libretro.git
synced 2024-11-26 17:50:25 +00:00
fix wiiu controls
This commit is contained in:
parent
da7014be4a
commit
36556c5d8c
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
*.a
|
||||
*.o
|
||||
*.so
|
||||
*.dll
|
||||
|
@ -616,7 +616,8 @@ static void update_input(void)
|
||||
input_buf |= map[i] != -1u &&
|
||||
input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, map[i]) ? (1 << i) : 0;
|
||||
|
||||
#ifdef MSB_FIRST
|
||||
//not needed at least for wiiu
|
||||
#if 0//def MSB_FIRST
|
||||
union {
|
||||
uint8_t b[2];
|
||||
uint16_t s;
|
||||
|
Loading…
Reference in New Issue
Block a user