fix reversed DialogsEnabled()

This commit is contained in:
Chris Danford
2006-03-14 20:48:43 +00:00
parent 492fbf1382
commit 042b119dea
+1 -1
View File
@@ -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()