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:
harry 2023-11-24 09:02:50 -05:00
parent 2909846446
commit 8600679636
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}