Skip to content

Commit 12d51d8

Browse files
Move turbo button to retropad X in Super Hang-On (make it easy to accelerate and use turbo together).
1 parent 083042d commit 12d51d8

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/osd/retro/retromain.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,6 +1324,20 @@ static void Input_Binding(running_machine &machine)
13241324
Buttons_mapping[5]=RETROPAD_R;
13251325

13261326
}
1327+
else if (
1328+
(core_stricmp(machine.system().name, "shangon") == 0) ||
1329+
(core_stricmp(machine.system().parent, "shangon") == 0)
1330+
)
1331+
{
1332+
/* Super Hang-On */
1333+
1334+
Buttons_mapping[0]=RETROPAD_A;
1335+
Buttons_mapping[1]=RETROPAD_B;
1336+
Buttons_mapping[2]=RETROPAD_Y;
1337+
Buttons_mapping[3]=RETROPAD_X;
1338+
Buttons_mapping[4]=RETROPAD_L;
1339+
Buttons_mapping[5]=RETROPAD_R;
1340+
}
13271341

13281342
}
13291343

0 commit comments

Comments
 (0)