(svn r17911) -Codechange: bool * is a pointer, not a bool

This commit is contained in:
peter1138 2009-10-31 08:15:46 +00:00
parent fe78cd77bb
commit bcb33b50ac
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ static const uint MAX_ARTICULATED_PARTS = 100; ///< Maximum of 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);