Fix incorrect constant

This commit is contained in:
Gymnasiast 2017-06-19 22:34:41 +02:00 committed by Michael Steenbeek
parent 5db6e5afa1
commit 53be8da368
1 changed files with 1 additions and 1 deletions

View File

@ -8499,7 +8499,7 @@ loc_6DCE68:
regs.al = vehicle->track_x >> 5;
regs.ah = vehicle->track_y >> 5;
regs.dl = vehicle->track_z >> 3;
for (sint32 i = 0; i < RCT12_NUM_COLOUR_SCHEMES; i++) {
for (sint32 i = 0; i < RCT12_MAX_STATIONS_PER_RIDE; i++) {
if ((uint16)regs.ax != ride->station_starts[i]) {
continue;
}