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

Convert remaining C-style casts to C++-style ones

This commit is contained in:
Gymnasiast
2020-04-30 15:51:50 +02:00
parent d8ffec0ed7
commit c83ddefe47
8 changed files with 24 additions and 19 deletions

View File

@@ -455,7 +455,8 @@ static void CompareStates(
{
log_warning(
"Inconsistent export size! Import Size: %llu bytes, Export Size: %llu bytes",
(unsigned long long)importBuffer.GetLength(), (unsigned long long)exportBuffer.GetLength());
static_cast<unsigned long long>(importBuffer.GetLength()),
static_cast<unsigned long long>(exportBuffer.GetLength()));
}
for (size_t spriteIdx = 0; spriteIdx < MAX_SPRITES; ++spriteIdx)