From 349d7745a6e80f2cebdac8f60c100c820995ed5d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 19 Dec 2005 21:47:34 +0000 Subject: [PATCH] internal errors that indicate code bugs, and not an error in a theme or the user's system, should be asserted out with a crash dump, not an exception dialog --- stepmania/src/FontManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/FontManager.cpp b/stepmania/src/FontManager.cpp index 9c61ed921f..7b2e172d2b 100644 --- a/stepmania/src/FontManager.cpp +++ b/stepmania/src/FontManager.cpp @@ -87,7 +87,7 @@ void FontManager::UnloadFont( Font *fp ) return; } - RageException::Throw( "Unloaded an unknown font (%p)", fp ); + FAIL_M( ssprintf("Unloaded an unknown font (%p)", fp) ); } /*