From 909245915bc80a7a399e54416e8509663f4c25c9 Mon Sep 17 00:00:00 2001 From: mauzus Date: Tue, 13 May 2008 03:51:35 +0000 Subject: [PATCH] bugfix: [1960354] FCEU should log a message when loading a .cht file --- src/cheat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cheat.cpp b/src/cheat.cpp index 68913985..5f56b7e3 100644 --- a/src/cheat.cpp +++ b/src/cheat.cpp @@ -204,6 +204,7 @@ void FCEU_LoadGameCheats(FILE *override) if(!fp) return; } + FCEU_printf("Cheats file loaded.\n"); while(fgets(linebuf,2048,fp)>0) { char *tbuf=linebuf;