From d5b7f2df461115f0952dc4d939360786731a5cdc Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 6 Sep 2024 22:14:29 +1000 Subject: [PATCH] RegTest: Compile fix --- src/duckstation-regtest/regtest_host.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duckstation-regtest/regtest_host.cpp b/src/duckstation-regtest/regtest_host.cpp index ea21c5b4f..17f5f4d44 100644 --- a/src/duckstation-regtest/regtest_host.cpp +++ b/src/duckstation-regtest/regtest_host.cpp @@ -166,8 +166,8 @@ bool Host::ChangeLanguage(const char* new_language) return false; } -s32 Host::Internal::GetTranslatedStringImpl(std::string_view context, std::string_view msg, char* tbuf, - size_t tbuf_space) +s32 Host::Internal::GetTranslatedStringImpl(std::string_view context, std::string_view msg, + std::string_view disambiguation, char* tbuf, size_t tbuf_space) { if (msg.size() > tbuf_space) return -1;