XSVF: Fix apparent #ifdef scope bug in xsvfDoXCOMMENT() where comments aren't truly ignored.
This commit is contained in:
@ -1560,16 +1560,18 @@ int xsvfDoXCOMMENT( SXsvfInfo* pXsvfInfo )
|
||||
{
|
||||
putchar( ' ' );
|
||||
}
|
||||
#endif
|
||||
|
||||
do
|
||||
{
|
||||
readByte( &ucText );
|
||||
#ifdef DEBUG_MODE
|
||||
if ( xsvf_iDebugLevel > 0 )
|
||||
{
|
||||
putchar( ucText ? ucText : '\n' );
|
||||
}
|
||||
} while ( ucText );
|
||||
#endif
|
||||
} while ( ucText );
|
||||
|
||||
pXsvfInfo->iErrorCode = XSVF_ERROR_NONE;
|
||||
|
||||
|
Reference in New Issue
Block a user