1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Rename fields of SpriteBounds

This commit is contained in:
Gymnasiast
2025-10-05 01:20:49 +02:00
parent ee67a827c0
commit be23fbc98c
14 changed files with 55 additions and 55 deletions

View File

@@ -250,7 +250,7 @@ namespace OpenRCT2::Scripting
auto entry = GetEntry();
if (entry != nullptr)
{
return entry->sprite_width;
return entry->spriteWidth;
}
return 0;
}
@@ -260,7 +260,7 @@ namespace OpenRCT2::Scripting
auto entry = GetEntry();
if (entry != nullptr)
{
return entry->sprite_height_negative;
return entry->spriteHeightNegative;
}
return 0;
}
@@ -270,7 +270,7 @@ namespace OpenRCT2::Scripting
auto entry = GetEntry();
if (entry != nullptr)
{
return entry->sprite_height_positive;
return entry->spriteHeightPositive;
}
return 0;
}