1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 15:24:30 +01:00

Rename Location.hpp constants (#22385)

This commit is contained in:
mrmbernardi
2024-07-26 18:23:25 +10:00
committed by GitHub
parent 05e56517ab
commit 9ed5c63857
87 changed files with 413 additions and 415 deletions

View File

@@ -1933,9 +1933,9 @@ static int32_t ConsoleSpawnBalloon(InteractiveConsole& console, const arguments_
console.WriteLineError("Need arguments: <x> <y> <z> <colour>");
return 1;
}
int32_t x = COORDS_XY_STEP * atof(argv[0].c_str());
int32_t y = COORDS_XY_STEP * atof(argv[1].c_str());
int32_t z = COORDS_Z_STEP * atof(argv[2].c_str());
int32_t x = kCoordsXYStep * atof(argv[0].c_str());
int32_t y = kCoordsXYStep * atof(argv[1].c_str());
int32_t z = kCoordsZStep * atof(argv[2].c_str());
int32_t col = 28;
if (argv.size() > 3)
col = atoi(argv[3].c_str());