Changeset - r13392:587674d12874
[Not reviewed]
master
0 1 0
peter1138 - 15 years ago 2009-10-31 08:15:46
peter1138@openttd.org
(svn r17911) -Codechange: bool * is a pointer, not a bool
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/articulated_vehicles.cpp
Show inline comments
 
@@ -28,7 +28,7 @@ static const uint MAX_ARTICULATED_PARTS 
 
 * @param mirrored Returns whether the part shall be flipped.
 
 * @return engine to add or INVALID_ENGINE
 
 */
 
static EngineID GetNextArticPart(uint index, EngineID front_type, Vehicle *front = NULL, bool *mirrored = false)
 
static EngineID GetNextArticPart(uint index, EngineID front_type, Vehicle *front = NULL, bool *mirrored = NULL)
 
{
 
	assert(front == NULL || front->engine_type == front_type);
 

	
0 comments (0 inline, 0 general)