Skip to content

Commit

Permalink
(libretro) fix chasehq's accelerator
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon authored Sep 15, 2023
1 parent 27c48e4 commit 6b6ba33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/burner/libretro/retro_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ static INT32 GameInpSpecialOne(struct GameInp* pgi, INT32 nPlayer, char* szb, ch
if (strcmp("Brake", description) == 0) {
GameInpDigital2RetroInpKey(pgi, nPlayer, RETRO_DEVICE_ID_JOYPAD_A, description);
}
if (strcmp("Accelerate", description) == 0) {
if (strcmp("Accelerator", description) == 0) {
GameInpDigital2RetroInpKey(pgi, nPlayer, RETRO_DEVICE_ID_JOYPAD_B, description);
}
if (strcmp("Turbo", description) == 0) {
Expand Down

0 comments on commit 6b6ba33

Please sign in to comment.