Files
@ r15145:7bf3f132181e
Branch filter:
Location: cpp/openttd-patchpack/source/src/transparency_gui.h - annotation
r15145:7bf3f132181e
786 B
text/x-c
(svn r19784) -Fix [FS#3770]: if a waypoint is immediately followed by a path signal a reservation would be made from that path signal before the waypoint is marked passed. As a result the order to go to the waypoint is used to reserve the path after the waypoint and as such trains get lost
r6428:7452784a0f7e r6428:7452784a0f7e r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r9111:983de9c5a848 r6428:7452784a0f7e r6428:7452784a0f7e r6428:7452784a0f7e r6428:7452784a0f7e r6428:7452784a0f7e r6428:7452784a0f7e | /* $Id$ */
/*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file transparency_gui.h GUI functions related to transparency. */
#ifndef TRANSPARENCY_GUI_H
#define TRANSPARENCY_GUI_H
void ShowTransparencyToolbar();
#endif /* TRANSPARENCY_GUI_H */
|