summaryrefslogtreecommitdiff
path: root/src/input_common/gcadapter/gc_poller.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2020-07-25 19:42:09 -0700
committerGravatar GitHub2020-07-25 19:42:09 -0700
commitb69f902b18a6af7c95ab556e2bc9365c8e8aea09 (patch)
tree1adf04384dadf67775b68aa35ce7f4d8d8ecf7f7 /src/input_common/gcadapter/gc_poller.cpp
parentMerge pull request #4429 from FearlessTobi/remove-duplicated-options (diff)
parentgc_adapter: Resolve C++20 deprecation warning (diff)
downloadyuzu-b69f902b18a6af7c95ab556e2bc9365c8e8aea09.tar.gz
yuzu-b69f902b18a6af7c95ab556e2bc9365c8e8aea09.tar.xz
yuzu-b69f902b18a6af7c95ab556e2bc9365c8e8aea09.zip
Merge pull request #4417 from lioncash/poll
gc_adapter/gc_poller: Resolve compiler warnings
Diffstat (limited to '')
-rw-r--r--src/input_common/gcadapter/gc_poller.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input_common/gcadapter/gc_poller.cpp b/src/input_common/gcadapter/gc_poller.cpp
index 96e22d3ad..f45983f3f 100644
--- a/src/input_common/gcadapter/gc_poller.cpp
+++ b/src/input_common/gcadapter/gc_poller.cpp
@@ -76,8 +76,7 @@ std::unique_ptr<Input::ButtonDevice> GCButtonFactory::Create(const Common::Param
76 76
77 // button is not an axis/stick button 77 // button is not an axis/stick button
78 if (button_id != PAD_STICK_ID) { 78 if (button_id != PAD_STICK_ID) {
79 auto button = std::make_unique<GCButton>(port, button_id, adapter.get()); 79 return std::make_unique<GCButton>(port, button_id, adapter.get());
80 return std::move(button);
81 } 80 }
82 81
83 // For Axis buttons, used by the binary sticks. 82 // For Axis buttons, used by the binary sticks.
@@ -264,7 +263,8 @@ Common::ParamPackage GCAnalogFactory::GetNextInput() {
264 if (analog_x_axis == -1) { 263 if (analog_x_axis == -1) {
265 analog_x_axis = axis; 264 analog_x_axis = axis;
266 controller_number = static_cast<int>(port); 265 controller_number = static_cast<int>(port);
267 } else if (analog_y_axis == -1 && analog_x_axis != axis && controller_number == port) { 266 } else if (analog_y_axis == -1 && analog_x_axis != axis &&
267 controller_number == static_cast<int>(port)) {
268 analog_y_axis = axis; 268 analog_y_axis = axis;
269 } 269 }
270 } 270 }