From 3a0b26225dc794bf5fc149317a858f9dd649b690 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 15 May 2024 07:58:24 +1000 Subject: [PATCH] SettingsInterface: Fix TinyString helper Backport of https://github.com/stenzek/duckstation/commit/d9003b10c36494d981c8541833ecc48de37c5759 --- common/SettingsInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/SettingsInterface.h b/common/SettingsInterface.h index 4792317962..1882a607ab 100644 --- a/common/SettingsInterface.h +++ b/common/SettingsInterface.h @@ -96,7 +96,7 @@ public: return value; } - __fi SmallString GetTinyStringValue(const char* section, const char* key, const char* default_value = "") const + __fi TinyString GetTinyStringValue(const char* section, const char* key, const char* default_value = "") const { TinyString value; if (!GetStringValue(section, key, &value))