1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

Use lower-case u integral suffix

This commit is contained in:
Hielke Morsink
2022-10-17 19:21:18 +02:00
parent 97a7fcc110
commit 31dd4bf604
78 changed files with 618 additions and 618 deletions

View File

@@ -567,7 +567,7 @@ private:
auto fileName = GetFileNameForNewObject(generation, name);
auto extension = (generation == ObjectGeneration::DAT ? u8".DAT" : u8".parkobj");
auto fullPath = Path::Combine(userObjPath, fileName + extension);
auto counter = 1U;
auto counter = 1u;
while (File::Exists(fullPath))
{
counter++;