Suppress Compile Warnings - Unguarded IF, Misleading Indent
A mix of tabs and space indententation is misleading. Some statements visually align with IF statements, but are outside the IF body. git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6941 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: a87be2c44a3049e0b14013a4e8e2acff16c1e08b Former-commit-id: 5847eb1e3946a4ff783eca84d2e52f2ebff836de
This commit is contained in:
parent
b925ca8e51
commit
6549f75037
7 changed files with 48 additions and 48 deletions
|
@ -9,7 +9,7 @@
|
|||
// File : unitpit.cpp
|
||||
// Created : 2007.02.20
|
||||
// Last changed : 2014.11.29
|
||||
// Copyright : © 2007-2014 Wolf-Dieter Beelitz
|
||||
// Copyright : <EFBFBD> 2007-2014 Wolf-Dieter Beelitz
|
||||
// eMail : wdbee@users.sourceforge.net
|
||||
// Version : 4.05.000
|
||||
//--------------------------------------------------------------------------*
|
||||
|
@ -31,17 +31,17 @@
|
|||
//
|
||||
// Das Programm wurde unter Windows XP entwickelt und getestet.
|
||||
// Fehler sind nicht bekannt, dennoch gilt:
|
||||
// Wer die Dateien verwendet erkennt an, dass für Fehler, Schäden,
|
||||
// Folgefehler oder Folgeschäden keine Haftung übernommen wird.
|
||||
// Wer die Dateien verwendet erkennt an, dass f<EFBFBD>r Fehler, Sch<63>den,
|
||||
// Folgefehler oder Folgesch<EFBFBD>den keine Haftung <20>bernommen wird.
|
||||
//--------------------------------------------------------------------------*
|
||||
// This program 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; either version 2 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Im übrigen gilt für die Nutzung und/oder Weitergabe die
|
||||
// Im <EFBFBD>brigen gilt f<>r die Nutzung und/oder Weitergabe die
|
||||
// GNU GPL (General Public License)
|
||||
// Version 2 oder nach eigener Wahl eine spätere Version.
|
||||
// Version 2 oder nach eigener Wahl eine sp<EFBFBD>tere Version.
|
||||
//--------------------------------------------------------------------------*
|
||||
// WARNING:
|
||||
//
|
||||
|
@ -1043,6 +1043,7 @@ double TPitLane::DistToPitStop(double TrackPos, bool Pitting) const
|
|||
Dist = oPitStopPos - oPitEntryStartPos;
|
||||
if (Dist < 0)
|
||||
Dist += oTrack->Length();
|
||||
|
||||
Dist += DistToPitEntry(TrackPos);
|
||||
}
|
||||
return Dist;
|
||||
|
|
|
@ -3936,7 +3936,7 @@ tdble GfParmGetVariable(void *handle, char const *path, char const *key)
|
|||
char *str;
|
||||
tdble *val;
|
||||
strcpy( pathdup, path );
|
||||
if( pathdup[ 0 ] == '/' )
|
||||
if ( pathdup[ 0 ] == '/' )
|
||||
memmove( pathdup, pathdup + sizeof( char ), sizeof( char ) * strlen( pathdup ) );
|
||||
|
||||
if ((parmHandle == NULL) || (parmHandle->magic != PARM_MAGIC)) {
|
||||
|
|
|
@ -833,7 +833,6 @@ bool GfglFeatures::loadSupport(int &nWidth, int &nHeight, int &nDepth,
|
|||
if (nMaxTexSize > 0)
|
||||
_mapSupportedInt[AnisotropicFiltering] =nAF;
|
||||
|
||||
|
||||
// Close config file if we open it.
|
||||
if (!hparmConfig)
|
||||
closeConfigFile(hparm);
|
||||
|
|
Loading…
Reference in a new issue