fix wiiu controls

This commit is contained in:
Not6 2017-08-03 01:29:58 +02:00
parent da7014be4a
commit 36556c5d8c
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.a
*.o
*.so
*.dll

View File

@ -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;