From 4ced8e9af2619984b1220cb2c8781c311f61f3ab Mon Sep 17 00:00:00 2001 From: Paul Date: Mon, 30 Oct 2000 15:33:49 +0000 Subject: [PATCH] --- source/system/except.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/system/except.cpp b/source/system/except.cpp index 6b2e34e0d..98753d668 100644 --- a/source/system/except.cpp +++ b/source/system/except.cpp @@ -482,7 +482,7 @@ static void displayValues() print("Scene:\n"); scene=GameState::getCurrentScene(); - sprintf(textBuf," Current scene: %s\n",scene->getSceneName()); + sprintf(textBuf," Current scene: %s\n",scene?scene->getSceneName():"None!?!?"); print(textBuf); scene=GameState::getPendingScene(); sprintf(textBuf," Pending scene: %s\n",scene?scene->getSceneName():"None");