Skip to content
Snippets Groups Projects
Commit 2e2dde2f authored by Lioncash's avatar Lioncash
Browse files

sdl_impl: Simplify make_tuple call

The purpose of make_tuple is that you don't need to explicitly type out
the types of the things that comprise said tuple.

Given this just returns default values, we can simplify this a bit.
parent 2680526e
No related branches found
No related tags found
No related merge requests found
......@@ -358,7 +358,7 @@ public:
return std::make_tuple(x / r * (r - deadzone) / (1 - deadzone),
y / r * (r - deadzone) / (1 - deadzone));
}
return std::make_tuple<float, float>(0.0f, 0.0f);
return {};
}
bool GetAnalogDirectionStatus(Input::AnalogDirection direction) const override {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment