Skip to content

Commit

Permalink
skullxbo, fix 2p kaillera
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Sep 5, 2024
1 parent 57e0f2d commit 4608740
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/burn/drv/atari/d_skullxbo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,23 @@ static void partial_update();

static struct BurnInputInfo SkullxboInputList[] = {
{"P1 Coin", BIT_DIGITAL, DrvJoy3 + 0, "p1 coin" },
{"P2 Coin", BIT_DIGITAL, DrvJoy3 + 1, "p2 coin" },
{"P3 Coin", BIT_DIGITAL, DrvJoy3 + 2, "p3 coin" },

{"P1 Up", BIT_DIGITAL, DrvJoy1 + 15, "p1 up" },
{"P1 Down", BIT_DIGITAL, DrvJoy1 + 14, "p1 down" },
{"P1 Left", BIT_DIGITAL, DrvJoy1 + 13, "p1 left" },
{"P1 Right", BIT_DIGITAL, DrvJoy1 + 12, "p1 right" },
{"P1 Button 1", BIT_DIGITAL, DrvJoy1 + 8, "p1 fire 1" },
{"P1 Button 2", BIT_DIGITAL, DrvJoy1 + 9, "p1 fire 2" },

{"P2 Coin", BIT_DIGITAL, DrvJoy3 + 1, "p2 coin" },
{"P2 Up", BIT_DIGITAL, DrvJoy2 + 15, "p2 up" },
{"P2 Down", BIT_DIGITAL, DrvJoy2 + 14, "p2 down" },
{"P2 Left", BIT_DIGITAL, DrvJoy2 + 13, "p2 left" },
{"P2 Right", BIT_DIGITAL, DrvJoy2 + 12, "p2 right" },
{"P2 Button 1", BIT_DIGITAL, DrvJoy2 + 8, "p2 fire 1" },
{"P2 Button 2", BIT_DIGITAL, DrvJoy2 + 9, "p2 fire 2" },

{"P3 Coin", BIT_DIGITAL, DrvJoy3 + 2, "p3 coin" },

{"Reset", BIT_DIGITAL, &DrvReset, "reset" },
{"Dip A", BIT_DIPSWITCH, DrvDips + 0, "dip" },
};
Expand Down

0 comments on commit 4608740

Please sign in to comment.