Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #98 from lioncash/clarify-kb-update
WII_IPC_HLE_Device_usb_kbd.cpp's Update method should return 0, not false.
  • Loading branch information
delroth committed Feb 23, 2014
2 parents 14f2fcc + 679a1bb commit 080a83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_kbd.cpp
Expand Up @@ -88,7 +88,7 @@ bool CWII_IPC_HLE_Device_usb_kbd::IsKeyPressed(int _Key)
u32 CWII_IPC_HLE_Device_usb_kbd::Update()
{
if (!SConfig::GetInstance().m_WiiKeyboard || !m_Active)
return false;
return 0;

u8 Modifiers = 0x00;
u8 PressedKeys[6] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
Expand Down

0 comments on commit 080a83e

Please sign in to comment.