summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar FearlessTobi2019-11-10 19:42:24 +0100
committerGravatar FearlessTobi2020-01-23 20:55:26 +0100
commitd01eb12f369eedae704c0e7ce0611f360302475b (patch)
tree79ca6164fcb03783bc19f1ec557cacdf0b3fc539 /src
parentAddress second part of review comments (diff)
downloadyuzu-d01eb12f369eedae704c0e7ce0611f360302475b.tar.gz
yuzu-d01eb12f369eedae704c0e7ce0611f360302475b.tar.xz
yuzu-d01eb12f369eedae704c0e7ce0611f360302475b.zip
Replace GetString with Get function
This should hopefully fix compilation errors.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_cmd/config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index 86f65cf46..161583b54 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -298,8 +298,8 @@ void Config::ReadValues() {
298 sdl2_config->GetInteger("ControlsGeneral", "touch_diameter_x", 15); 298 sdl2_config->GetInteger("ControlsGeneral", "touch_diameter_x", 15);
299 Settings::values.touchscreen.diameter_y = 299 Settings::values.touchscreen.diameter_y =
300 sdl2_config->GetInteger("ControlsGeneral", "touch_diameter_y", 15); 300 sdl2_config->GetInteger("ControlsGeneral", "touch_diameter_y", 15);
301 Settings::values.udp_input_address = sdl2_config->GetString( 301 Settings::values.udp_input_address =
302 "Controls", "udp_input_address", InputCommon::CemuhookUDP::DEFAULT_ADDR); 302 sdl2_config->Get("Controls", "udp_input_address", InputCommon::CemuhookUDP::DEFAULT_ADDR);
303 Settings::values.udp_input_port = static_cast<u16>(sdl2_config->GetInteger( 303 Settings::values.udp_input_port = static_cast<u16>(sdl2_config->GetInteger(
304 "Controls", "udp_input_port", InputCommon::CemuhookUDP::DEFAULT_PORT)); 304 "Controls", "udp_input_port", InputCommon::CemuhookUDP::DEFAULT_PORT));
305 305