1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Move Mac-only str handling functions to Platform (#10264)

This commit is contained in:
Tulio Leao
2020-01-04 08:44:40 -03:00
committed by Michael Steenbeek
parent e87607fa6d
commit c4a865384e
10 changed files with 65 additions and 48 deletions

View File

@@ -44,6 +44,16 @@ namespace Platform
Guard::Assert(false, "GetCurrentExecutablePath() not implemented for Android.");
return std::string();
}
uintptr_t StrDecompToPrecomp(utf8* input)
{
return reinterpret_cast<uintptr_t>(input);
}
bool HandleSpecialCommandLineArgument(const char* argument)
{
return false;
}
} // namespace Platform
#endif