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.
This commit is contained in:
Lioncash 2020-08-28 21:08:06 -04:00
parent 2e2dde2f95
commit f3ac088345

View File

@ -574,7 +574,7 @@ std::vector<Common::ParamPackage> 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);