From d9003b10c36494d981c8541833ecc48de37c5759 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 14 May 2024 21:22:55 +1000 Subject: [PATCH] SettingsInterface: Fix TinyString helper --- src/common/settings_interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/settings_interface.h b/src/common/settings_interface.h index dbaf0dc6b..baa17914e 100644 --- a/src/common/settings_interface.h +++ b/src/common/settings_interface.h @@ -97,8 +97,8 @@ public: return value; } - ALWAYS_INLINE SmallString GetTinyStringValue(const char* section, const char* key, - const char* default_value = "") const + ALWAYS_INLINE TinyString GetTinyStringValue(const char* section, const char* key, + const char* default_value = "") const { TinyString value; if (!GetStringValue(section, key, &value))