1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 01:04:50 +01:00

Fix Windows compilation

This commit is contained in:
Gymnasiast
2021-10-01 19:05:08 +02:00
parent be8722a578
commit 8c2bb15319

View File

@@ -512,10 +512,12 @@ namespace OpenRCT2
Read(&raw, sizeof(raw));
return static_cast<T>(raw);
}
uint64_t raw{};
Read(&raw, sizeof(raw));
return static_cast<T>(raw);
else
{
uint64_t raw{};
Read(&raw, sizeof(raw));
return static_cast<T>(raw);
}
}
else
{