Comment out warning message about debug file not being able to be opened for reading. It is normal for the file to not exist so it seems silly to warn about not being able to open it.
This commit is contained in:
parent
2909846446
commit
8600679636
|
@ -4892,7 +4892,7 @@ void loadGameDebugBreakpoints(void)
|
|||
|
||||
if ( fp == NULL )
|
||||
{
|
||||
printf("Warning: Failed to open file '%s' for reading\n", fileName.c_str() );
|
||||
//printf("Warning: Failed to open file '%s' for reading\n", fileName.c_str() );
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue