mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-16 11:09:11 +00:00
(svn r2011) - Fix: [ 1162209 ] Fix OS/2 build (orudge) #2
This commit is contained in:
@@ -2589,10 +2589,9 @@ red_light: {
|
||||
v->progress = 255-10;
|
||||
if (++v->load_unload_time_rem < _patches.wait_twoway_signal * 73) {
|
||||
TileIndex o_tile = gp.new_tile + TileOffsByDir(enterdir);
|
||||
VehicleAtSignalData vasd = {
|
||||
o_tile,
|
||||
dir ^ 4
|
||||
};
|
||||
VehicleAtSignalData vasd;
|
||||
vasd.tile = o_tile;
|
||||
vasd.direction = dir ^ 4;
|
||||
|
||||
/* check if a train is waiting on the other side */
|
||||
if (VehicleFromPos(o_tile, &vasd, CheckVehicleAtSignal) == NULL)
|
||||
|
Reference in New Issue
Block a user