virtual pads - fix atari 2600 booster grip button mapping, broken in recent refactors

This commit is contained in:
adelikat 2020-03-29 17:34:42 -05:00
parent 948f58bfae
commit b1911f32a3
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ namespace BizHawk.Client.EmuHawk
ButtonSchema.Left(2, 24, controller),
ButtonSchema.Right(44, 24, controller),
new ButtonSchema(132, 24, controller, "Button") { DisplayName = "B" },
new ButtonSchema(68, 36, "Button 1") { DisplayName = "B1" },
new ButtonSchema(100, 36, "Button 2") { DisplayName = "B2" }
new ButtonSchema(68, 36, controller, "Button 1") { DisplayName = "B1" },
new ButtonSchema(100, 36, controller, "Button 2") { DisplayName = "B2" }
}
};
}