1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 15:54:31 +01:00

Replace our own integer types with standard ones

This commit is contained in:
Michael Steenbeek
2018-06-20 17:28:51 +02:00
parent ec3a1e575e
commit 1b08fb4e69
618 changed files with 33440 additions and 33449 deletions

View File

@@ -16,7 +16,7 @@
#define SZ_CLOSEST "closest"
#define SZ_DITHERING "dithering"
sint32 gSpriteMode = 0;
int32_t gSpriteMode = 0;
static const char * _mode;
@@ -49,8 +49,8 @@ static exitcode_t HandleSprite(CommandLineArgEnumerator *argEnumerator)
Memory::Free(_mode);
const char * * argv = (const char * *)argEnumerator->GetArguments() + argEnumerator->GetIndex() - 1;
sint32 argc = argEnumerator->GetCount() - argEnumerator->GetIndex() + 1;
sint32 result = cmdline_for_sprite(argv, argc);
int32_t argc = argEnumerator->GetCount() - argEnumerator->GetIndex() + 1;
int32_t result = cmdline_for_sprite(argv, argc);
if (result < 0) {
return EXITCODE_FAIL;
}