rnd-20070418-1-src
[rocksndiamonds.git] / src / screens.c
index 4a0110fb00733cb49bd60ec4a8db5992bdfd7e85..4289203cf9269f05601b370fe7c659cf9d1ff33b 100644 (file)
@@ -6065,6 +6065,21 @@ void HandleGameActions()
     AutoPlayTape();    /* continue automatically playing next tape */
 }
 
+#if 0
+void ChangeGameStatus(int new_game_status)
+{
+  /* for fading out last screen, use the last game status */
+  global.border_status = game_status;
+  global.fading_status = game_status;
+
+  /* ... */
+
+  /* for fading in next screen, use the new game status */
+  global.border_status = new_game_status;
+  global.fading_status = new_game_status;
+}
+#endif
+
 
 /* ---------- new screen button stuff -------------------------------------- */