1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Close #12174: Remove Formatter additions with uintptr_t

This commit is contained in:
frutiemax
2020-07-11 12:56:12 -04:00
committed by GitHub
parent 76e7bfbf78
commit 508344a088
9 changed files with 17 additions and 18 deletions

View File

@@ -150,9 +150,9 @@ namespace Platform
return exePath;
}
uintptr_t StrDecompToPrecomp(utf8* input)
utf8* StrDecompToPrecomp(utf8* input)
{
return reinterpret_cast<uintptr_t>(input);
return input;
}
bool HandleSpecialCommandLineArgument(const char* argument)