Skip to content

Commit

Permalink
d_galpanic: fix inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon authored Oct 4, 2024
1 parent 31dbf64 commit 9d556c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/burn/drv/pst90s/d_galpanic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ static INT32 DrvFrame()
{
memset (DrvInputs, 0xff, 3 * sizeof(UINT16));

for (INT32 i = 0; i < 8; i++) {
for (INT32 i = 0; i < 16; i++) {
DrvInputs[0] ^= (DrvJoy1[i] & 1) << i;
DrvInputs[1] ^= (DrvJoy2[i] & 1) << i;
DrvInputs[2] ^= (DrvJoy3[i] & 1) << i;
Expand Down

0 comments on commit 9d556c6

Please sign in to comment.