mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Start zAttemps from 0
This commit is contained in:
@@ -3565,7 +3565,7 @@ void ride_construction_toolupdate_construct(ScreenCoordsXY screenCoords)
|
|||||||
|
|
||||||
if (ride->type == RIDE_TYPE_MAZE)
|
if (ride->type == RIDE_TYPE_MAZE)
|
||||||
{
|
{
|
||||||
for (int zAttempts = 1; zAttempts < numAttempts; ++zAttempts)
|
for (int zAttempts = 0; zAttempts < numAttempts; ++zAttempts)
|
||||||
{
|
{
|
||||||
window_ride_construction_update_state(
|
window_ride_construction_update_state(
|
||||||
&trackType, &trackDirection, &rideIndex, &liftHillAndAlternativeState, &mapCoords->x, &mapCoords->y, &z,
|
&trackType, &trackDirection, &rideIndex, &liftHillAndAlternativeState, &mapCoords->x, &mapCoords->y, &z,
|
||||||
@@ -3588,7 +3588,7 @@ void ride_construction_toolupdate_construct(ScreenCoordsXY screenCoords)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int zAttempts = 1; zAttempts < numAttempts; ++zAttempts)
|
for (int zAttempts = 0; zAttempts < numAttempts; ++zAttempts)
|
||||||
{
|
{
|
||||||
window_ride_construction_update_state(
|
window_ride_construction_update_state(
|
||||||
&trackType, &trackDirection, &rideIndex, &liftHillAndAlternativeState, &mapCoords->x, &mapCoords->y, &z, nullptr);
|
&trackType, &trackDirection, &rideIndex, &liftHillAndAlternativeState, &mapCoords->x, &mapCoords->y, &z, nullptr);
|
||||||
|
|||||||
Reference in New Issue
Block a user