From 661a1b89108b2737867eb84bd7cc0dface71f895 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Thu, 17 Mar 2011 15:05:15 -0500 Subject: [PATCH] fix PaneDisplay --- src/PaneDisplay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PaneDisplay.cpp b/src/PaneDisplay.cpp index f3e37b9e60..e812156cd3 100644 --- a/src/PaneDisplay.cpp +++ b/src/PaneDisplay.cpp @@ -51,6 +51,7 @@ static const Content_t g_Contents[NUM_PaneCategory] = { NEED_NOTES, "count" }, // Mines { NEED_NOTES, "count" }, // Hands { NEED_NOTES, "count" }, // Lifts + { NEED_NOTES, "count" }, // Fakes { NEED_NOTES, "score" }, // MachineHighScore { NEED_NOTES, "name" }, // MachineHighName { NEED_NOTES|NEED_PROFILE, "score" }, // ProfileHighScore @@ -247,6 +248,7 @@ void PaneDisplay::SetContent( PaneCategory c ) case PaneCategory_Mines: case PaneCategory_Hands: case PaneCategory_Lifts: + case PaneCategory_Fakes: str = ssprintf( COUNT_FORMAT.GetValue(), val ); } }