chore: CRLF to LF

This commit is contained in:
smpn2
2022-12-16 23:18:35 +09:00
parent b7a60638a4
commit 6c914266d9
725 changed files with 131020 additions and 131020 deletions
+47 -47
View File
@@ -1,47 +1,47 @@
#include "io.h"
std::vector<Button> &games::rf3d::get_buttons() {
static std::vector<Button> buttons;
if (buttons.empty()) {
buttons = GameAPI::Buttons::getButtons("Road Fighters 3D");
GameAPI::Buttons::sortButtons(
&buttons,
"Service",
"Test",
"Coin Mech",
"View",
"2D/3D",
"Lever Up",
"Lever Down",
"Lever Left",
"Lever Right",
"Wheel Left",
"Wheel Right",
"Accelerate",
"Brake",
"Auto Lever Down",
"Auto Lever Up"
);
}
return buttons;
}
std::vector<Analog> &games::rf3d::get_analogs() {
static std::vector<Analog> analogs;
if (analogs.empty()) {
analogs = GameAPI::Analogs::getAnalogs("Road Fighters 3D");
GameAPI::Analogs::sortAnalogs(
&analogs,
"Wheel",
"Accelerate",
"Brake"
);
}
return analogs;
}
#include "io.h"
std::vector<Button> &games::rf3d::get_buttons() {
static std::vector<Button> buttons;
if (buttons.empty()) {
buttons = GameAPI::Buttons::getButtons("Road Fighters 3D");
GameAPI::Buttons::sortButtons(
&buttons,
"Service",
"Test",
"Coin Mech",
"View",
"2D/3D",
"Lever Up",
"Lever Down",
"Lever Left",
"Lever Right",
"Wheel Left",
"Wheel Right",
"Accelerate",
"Brake",
"Auto Lever Down",
"Auto Lever Up"
);
}
return buttons;
}
std::vector<Analog> &games::rf3d::get_analogs() {
static std::vector<Analog> analogs;
if (analogs.empty()) {
analogs = GameAPI::Analogs::getAnalogs("Road Fighters 3D");
GameAPI::Analogs::sortAnalogs(
&analogs,
"Wheel",
"Accelerate",
"Brake"
);
}
return analogs;
}