mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 05:28:56 +02:00
stupid 1
This commit is contained in:
parent
a8b1ad7ea8
commit
4de9bdc5fe
2 changed files with 4 additions and 4 deletions
|
|
@ -187,7 +187,7 @@ QString ConfigureInputPlayer::ButtonToText(const Common::ParamPackage& param) {
|
||||||
const QString inverted = QString::fromStdString(param.Get("inverted", false) ? "!" : "");
|
const QString inverted = QString::fromStdString(param.Get("inverted", false) ? "!" : "");
|
||||||
const QString invert = QString::fromStdString(param.Get("invert", "+") == "-" ? "-" : "");
|
const QString invert = QString::fromStdString(param.Get("invert", "+") == "-" ? "-" : "");
|
||||||
const QString turbo = QString::fromStdString(param.Get("turbo", false) ? "$" : "");
|
const QString turbo = QString::fromStdString(param.Get("turbo", false) ? "$" : "");
|
||||||
const auto common_button_name = input_subsystem->GetInputButtonName(param);
|
const auto common_button_name = input_subsystem->GetButtonName(param);
|
||||||
|
|
||||||
// Retrieve the names from Qt
|
// Retrieve the names from Qt
|
||||||
if (param.Get("engine", "") == "keyboard") {
|
if (param.Get("engine", "") == "keyboard") {
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ QString GetRingconButtonName(Common::Input::ButtonNames button_name) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetAnalogParam(const Common::ParamPackage& input_param, Common::ParamPackage& analog_param,
|
void SetRingconAnalogParam(const Common::ParamPackage& input_param, Common::ParamPackage& analog_param,
|
||||||
const std::string& button_name) {
|
const std::string& button_name) {
|
||||||
// The poller returned a complete axis, so set all the buttons
|
// The poller returned a complete axis, so set all the buttons
|
||||||
if (input_param.Has("axis_x") && input_param.Has("axis_y")) {
|
if (input_param.Has("axis_x") && input_param.Has("axis_y")) {
|
||||||
|
|
@ -156,7 +156,7 @@ ConfigureRingController::ConfigureRingController(QWidget* parent,
|
||||||
analog_map_buttons[sub_button_id],
|
analog_map_buttons[sub_button_id],
|
||||||
[=, this](const Common::ParamPackage& params) {
|
[=, this](const Common::ParamPackage& params) {
|
||||||
Common::ParamPackage param = emulated_controller->GetRingParam();
|
Common::ParamPackage param = emulated_controller->GetRingParam();
|
||||||
SetAnalogParam(params, param, analog_sub_buttons[sub_button_id]);
|
SetRingconAnalogParam(params, param, analog_sub_buttons[sub_button_id]);
|
||||||
emulated_controller->SetRingParam(param);
|
emulated_controller->SetRingParam(param);
|
||||||
},
|
},
|
||||||
InputCommon::Polling::InputType::Stick);
|
InputCommon::Polling::InputType::Stick);
|
||||||
|
|
@ -397,7 +397,7 @@ QString ConfigureRingController::ButtonToText(const Common::ParamPackage& param)
|
||||||
|
|
||||||
const QString toggle = QString::fromStdString(param.Get("toggle", false) ? "~" : "");
|
const QString toggle = QString::fromStdString(param.Get("toggle", false) ? "~" : "");
|
||||||
const QString inverted = QString::fromStdString(param.Get("inverted", false) ? "!" : "");
|
const QString inverted = QString::fromStdString(param.Get("inverted", false) ? "!" : "");
|
||||||
const auto common_button_name = input_subsystem->GetRingconButtonName(param);
|
const auto common_button_name = input_subsystem->GetButtonName(param);
|
||||||
|
|
||||||
// Retrieve the names from Qt
|
// Retrieve the names from Qt
|
||||||
if (param.Get("engine", "") == "keyboard") {
|
if (param.Get("engine", "") == "keyboard") {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue