mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fixed a bug in FillReport.cpp that caused the emulated Wiimote under Linux to case every button to be pressed(FillReport.cpp). Moving the read packet data one byte forward to match what is received under Windows. Don't know why the Wiimote doesn't work still
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2818 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -381,7 +381,7 @@ int IsKey(int Key)
|
||||
default: PanicAlert("There is syntax error in a function that is calling IsKey(%i)", Key); return false;
|
||||
}
|
||||
#else
|
||||
return true;
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
//////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user