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:
committed by
GitHub
parent
b939bc2ac4
commit
63ed6c99a5
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user