RegTest: Compile fix

This commit is contained in:
Stenzek 2024-09-06 22:14:29 +10:00
parent 14a570559b
commit d5b7f2df46
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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;