From 042b119dea5b25a2ed9482c8197f71a5b934ba83 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 14 Mar 2006 20:48:43 +0000 Subject: [PATCH] fix reversed DialogsEnabled() --- stepmania/src/arch/Dialog/Dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Dialog/Dialog.cpp b/stepmania/src/arch/Dialog/Dialog.cpp index 5c5afa45ed..4f1e5940d6 100644 --- a/stepmania/src/arch/Dialog/Dialog.cpp +++ b/stepmania/src/arch/Dialog/Dialog.cpp @@ -62,7 +62,7 @@ static bool g_bWindowed = true; // Start out true so that we'll show errors bef static bool DialogsEnabled() { - return !g_bWindowed; + return g_bWindowed; } void Dialog::Init()