1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Fix type error in openrct2-dll project

This commit is contained in:
Hielke Morsink
2018-06-05 14:38:14 +02:00
parent 8aa122f54e
commit 832da93a87

View File

@@ -62,7 +62,7 @@ static char * * GetCommandLineArgs(int argc, wchar_t * * argvW)
char * * argv = (char * *)malloc(argc * sizeof(char *)); char * * argv = (char * *)malloc(argc * sizeof(char *));
if (argv == nullptr) if (argv == nullptr)
{ {
return false; return nullptr;
} }
// Convert to UTF-8 // Convert to UTF-8