(svn r26117) -Cleanup: unneeded NULL check

This commit is contained in:
rubidium 2013-11-26 10:00:15 +00:00
parent 04e97a0bec
commit f669101560
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public:
/* base tile cost depending on distance */
int c = IsDiagonalTrackdir(n.GetTrackdir()) ? YAPF_TILE_LENGTH : YAPF_TILE_CORNER_LENGTH;
/* additional penalty for curves */
if (n.m_parent != NULL && n.GetTrackdir() != NextTrackdir(n.m_parent->GetTrackdir())) {
if (n.GetTrackdir() != NextTrackdir(n.m_parent->GetTrackdir())) {
/* new trackdir does not match the next one when going straight */
c += YAPF_TILE_LENGTH;
}