From f3ac0883451ba4359a155c0d10992d675a63d9c9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 28 Aug 2020 21:08:06 -0400 Subject: [PATCH] sdl_impl: Prevent type truncation in BuildAnalogParamPackageForButton() default arguments We need to add the 'f' suffix to make the right hand side a float and not a double. --- src/input_common/sdl/sdl_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index cb2cdf96f9..9d3d1803c8 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -574,7 +574,7 @@ std::vector SDLState::GetInputDevices() { namespace { Common::ParamPackage BuildAnalogParamPackageForButton(int port, std::string guid, u8 axis, - float value = 0.1) { + float value = 0.1f) { Common::ParamPackage params({{"engine", "sdl"}}); params.Set("port", port); params.Set("guid", guid);