Let us start here, from square one. No, from Zero!
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#include "io.h"
|
||||
|
||||
std::vector<Button> &games::bc::get_buttons() {
|
||||
static std::vector<Button> buttons;
|
||||
|
||||
if (buttons.empty()) {
|
||||
buttons = GameAPI::Buttons::getButtons("Busou Shinki: Armored Princess Battle Conductor");
|
||||
|
||||
GameAPI::Buttons::sortButtons(
|
||||
&buttons,
|
||||
"Service",
|
||||
"Test",
|
||||
"Up",
|
||||
"Down",
|
||||
"Left",
|
||||
"Right",
|
||||
"Joystick Button",
|
||||
"Trigger 1",
|
||||
"Trigger 2",
|
||||
"Button 1",
|
||||
"Button 2",
|
||||
"Button 3",
|
||||
"Button 4"
|
||||
);
|
||||
}
|
||||
|
||||
return buttons;
|
||||
}
|
||||
Reference in New Issue
Block a user