From fe9680fba808ff40c717b0a6d117c4cde4b2d6d9 Mon Sep 17 00:00:00 2001 From: Albert Liu <45282415+ggrtk@users.noreply.github.com> Date: Thu, 29 Oct 2020 17:56:25 -0700 Subject: [PATCH] libretro: Fix duplicated core option keys --- src/duckstation-libretro/libretro_host_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duckstation-libretro/libretro_host_interface.cpp b/src/duckstation-libretro/libretro_host_interface.cpp index e40fb1a82..38d7f62f6 100644 --- a/src/duckstation-libretro/libretro_host_interface.cpp +++ b/src/duckstation-libretro/libretro_host_interface.cpp @@ -681,7 +681,7 @@ static std::array s_option_definitions = {{ "Automatically enables analog mode in supported controllers at start/reset.", {{"true", "Enabled"}, {"false", "Disabled"}}, "false"}, - {"duckstation_Controller1.AutoEnableAnalog", + {"duckstation_Controller1.AnalogDPadInDigitalMode", "Controller 1 Use Analog Sticks for D-Pad in Digital Mode", "Allows you to use the analog sticks to control the d-pad in digital mode, as well as the buttons.", {{"true", "Enabled"}, {"false", "Disabled"}}, @@ -701,7 +701,7 @@ static std::array s_option_definitions = {{ "Automatically enables analog mode in supported controllers at start/reset.", {{"true", "Enabled"}, {"false", "Disabled"}}, "false"}, - {"duckstation_Controller2.AutoEnableAnalog", + {"duckstation_Controller2.AnalogDPadInDigitalMode", "Controller 2 Use Analog Sticks for D-Pad in Digital Mode", "Allows you to use the analog sticks to control the d-pad in digital mode, as well as the buttons.", {{"true", "Enabled"}, {"false", "Disabled"}},