From 892758907d6c5f83cf4b2ccfb24d40e4066c3bf1 Mon Sep 17 00:00:00 2001 From: ugetab Date: Thu, 20 May 2010 07:01:41 +0000 Subject: [PATCH] Made the Message Log more verbose about header info on load. Changed in response to tracker item 2805970, but I don't trust that the document provided is accurate, so verbosity was increased instead. --- src/ines.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ines.cpp b/src/ines.cpp index 392a0191..c3a6e3ee 100644 --- a/src/ines.cpp +++ b/src/ines.cpp @@ -843,8 +843,9 @@ int iNESLoad(const char *name, FCEUFILE *fp, int OverwriteVidMode) FCEU_printf(" Mapper #: %d\n Mapper name: %s\n Mirroring: %s\n", MapperNo, mappername, Mirroring==2?"None(Four-screen)":Mirroring?"Vertical":"Horizontal"); - if(head.ROM_type&2) FCEU_printf(" Battery-backed.\n"); - if(head.ROM_type&4) FCEU_printf(" Trained.\n"); + FCEU_printf(" Battery-backed: %s\n", (head.ROM_type&2)?"True":"False"); + FCEU_printf(" Trained: %s\n", (head.ROM_type&4)?"True":"False"); + // (head.ROM_type&8) = Mirroring: None(Four-screen) SetInput(); CheckHInfo();