Maelstrom: Make it so we can see the dialogs for now

https://github.com/libsdl-org/Maelstrom/commit/b6f4d7c2c1a023ed35f8a2289c0f40589c14332a

From b6f4d7c2c1a023ed35f8a2289c0f40589c14332a Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 27 Oct 2011 00:57:13 -0400
Subject: [PATCH] Make it so we can see the dialogs for now

---
 dialog.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dialog.cpp b/dialog.cpp
index 2b50bb38..78d79991 100644
--- a/dialog.cpp
+++ b/dialog.cpp
@@ -197,6 +197,7 @@ Maclike_Dialog:: Run(int expand_steps)
 	Screen->DrawRect(X+3, Y+3, Width-6, Height-6, black);
 	Screen->FillRect(X+4, Y+4, Width-8, Height-8, white);
 
+#if 0
 	/* Allow the dialog to expand slowly */
 	XX = (double)(X+Width/2);
 	YY = (double)(Y+Height/2);
@@ -224,6 +225,7 @@ Maclike_Dialog:: Run(int expand_steps)
 	}
 	Screen->Clear((Uint16)X, (Uint16)Y, (Uint16)Width, (Uint16)Height);
 	Screen->Update();
+#endif
 
 	/* Draw the dialog elements (after the slow expand) */
 	for ( relem = rect_list.next; relem; relem = relem->next ) {