From 097efbb08badc14798149e9e274f65f57873afda Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 22 Aug 2004 17:35:22 +0000 Subject: [PATCH] show "N/A", not "?", for Player Best if no Profile present --- stepmania/src/PaneDisplay.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/PaneDisplay.cpp b/stepmania/src/PaneDisplay.cpp index 410d166c96..f144845d06 100644 --- a/stepmania/src/PaneDisplay.cpp +++ b/stepmania/src/PaneDisplay.cpp @@ -157,7 +157,10 @@ void PaneDisplay::SetContent( PaneContents c ) if( (g_Contents[c].req&NEED_COURSE) && !pTrail ) goto done; if( (g_Contents[c].req&NEED_PROFILE) && !pProfile ) + { + str = "N/A"; goto done; + } { RadarValues rv;