summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar lat9nq2023-06-18 17:58:07 -0400
committerGravatar lat9nq2023-07-21 10:56:55 -0400
commitc97cbd089b371ed07234c66633f105862462826a (patch)
tree114f6887773212af416a585320b323c1f0cba7e4 /src
parentcodespellrc: Ignore canonicalizations (diff)
downloadyuzu-c97cbd089b371ed07234c66633f105862462826a.tar.gz
yuzu-c97cbd089b371ed07234c66633f105862462826a.tar.xz
yuzu-c97cbd089b371ed07234c66633f105862462826a.zip
settings_setting: Fix MSVC error
Diffstat (limited to 'src')
-rw-r--r--src/common/settings_setting.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings_setting.h b/src/common/settings_setting.h
index f803e4e6e..a0a05da54 100644
--- a/src/common/settings_setting.h
+++ b/src/common/settings_setting.h
@@ -170,7 +170,7 @@ public:
170 } else { 170 } else {
171 this->SetValue(static_cast<Type>(std::stoll(input))); 171 this->SetValue(static_cast<Type>(std::stoll(input)));
172 } 172 }
173 } catch (std::invalid_argument& e) { 173 } catch (std::invalid_argument&) {
174 this->SetValue(this->GetDefault()); 174 this->SetValue(this->GetDefault());
175 } 175 }
176 } 176 }