From 8600679636f419c80cb458e33b6c38807b166d15 Mon Sep 17 00:00:00 2001 From: harry Date: Fri, 24 Nov 2023 09:02:50 -0500 Subject: [PATCH] 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. --- src/drivers/Qt/ConsoleDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/Qt/ConsoleDebugger.cpp b/src/drivers/Qt/ConsoleDebugger.cpp index 406b7a74..09c517ef 100644 --- a/src/drivers/Qt/ConsoleDebugger.cpp +++ b/src/drivers/Qt/ConsoleDebugger.cpp @@ -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; }