From 815a332ef32c96b03a830dc84d19670492011c11 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 22 Jul 2008 11:08:26 +0000 Subject: [PATCH] Change assert to one that doesn't always succeed. --- stepmania/src/ThemeManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ThemeManager.cpp b/stepmania/src/ThemeManager.cpp index eee5d817a5..4fce0cfd27 100644 --- a/stepmania/src/ThemeManager.cpp +++ b/stepmania/src/ThemeManager.cpp @@ -772,7 +772,7 @@ RString ThemeManager::GetPath( ElementCategory category, const RString &sMetrics { PathInfo pi; GetPathInfo( pi, category, sMetricsGroup, sElement, bOptional ); - ASSERT( pi.sResolvedPath ); + ASSERT( !pi.sResolvedPath.empty() ); return pi.sResolvedPath; }