1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 05:53:02 +01:00

Make StrDecompToPrecomp() take C++ strings

This commit is contained in:
Michael Steenbeek
2022-02-07 18:56:04 +01:00
committed by GitHub
parent b939bc2ac4
commit 63ed6c99a5
7 changed files with 17 additions and 17 deletions

View File

@@ -60,9 +60,9 @@ namespace Platform
return std::string();
}
utf8* StrDecompToPrecomp(utf8* input)
u8string StrDecompToPrecomp(u8string_view input)
{
return input;
return u8string(input);
}
bool HandleSpecialCommandLineArgument(const char* argument)