We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f2e81 commit 3d66d17Copy full SHA for 3d66d17
1 file changed
src/osd/retro/retromain.c
@@ -1194,6 +1194,20 @@ static void Input_Binding(running_machine &machine)
1194
Buttons_mapping[5]=RETROPAD_R;
1195
1196
}
1197
+ else if (
1198
+ (core_stricmp(machine.system().name, "dynwar") == 0) ||
1199
+ (core_stricmp(machine.system().parent, "dynwar") == 0)
1200
+ )
1201
+ {
1202
+ /* Capcom CPS-1: Dynasty Wars */
1203
+
1204
+ Buttons_mapping[0]=RETROPAD_B;
1205
+ Buttons_mapping[1]=RETROPAD_A;
1206
+ Buttons_mapping[2]=RETROPAD_X;
1207
+ Buttons_mapping[3]=RETROPAD_Y;
1208
+ Buttons_mapping[4]=RETROPAD_L;
1209
+ Buttons_mapping[5]=RETROPAD_R;
1210
+ }
1211
else if (
1212
(core_stricmp(machine.system().parent, "aof") == 0) ||
1213
(core_stricmp(machine.system().parent, "aof2") == 0) ||
0 commit comments