Skip to content

Commit

Permalink
Fix duplicate inputs for GHLtar strumming
Browse files Browse the repository at this point in the history
  • Loading branch information
InvoxiPlayGames authored and Nekotekina committed Mar 1, 2020
1 parent 582c983 commit 752c4a7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rpcs3/Emu/Io/GHLtar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,11 @@ void usb_device_ghltar::interrupt_transfer(u32 buf_size, u8* buf, u32 endpoint,
pad->m_press_down = button.m_value;
if (button.m_pressed)
buf[4] = 0xFF; // Strum Down
buf[2] = 0x04; // Down D-Pad (Unused)
break;
case CELL_PAD_CTRL_UP:
pad->m_press_up = button.m_value;
if (button.m_pressed)
buf[4] = 0x00; // Strum Up
buf[2] = 0x00; // Up D-Pad (Unused)
break;
case CELL_PAD_CTRL_LEFT:
pad->m_press_down = button.m_value;
Expand Down

0 comments on commit 752c4a7

Please sign in to comment.