rnd-20031208-1-src
[rocksndiamonds.git] / src / tape.h
index e1482e4768e29ec99fabef8a576ae54c5c328286..03cc3d24812d87fd7037deffb81c5b5d4e7b9b42 100644 (file)
 #define VIDEO_STATE_PBEND      (VIDEO_STATE_PBEND_OFF  | VIDEO_STATE_PBEND_ON)
 
 /* tags to draw video display labels or symbols only */
+/* (negative values to prevent misinterpretation in DrawVideoDisplay(), where
+   the variable "value" is also used for tape length -- better fix this) */
 #define VIDEO_DISPLAY_DEFAULT          0
-#define VIDEO_DISPLAY_LABEL_ONLY       1
-#define VIDEO_DISPLAY_SYMBOL_ONLY      2
+#define VIDEO_DISPLAY_LABEL_ONLY       -1
+#define VIDEO_DISPLAY_SYMBOL_ONLY      -2
 
 
 void DrawVideoDisplay(unsigned long, unsigned long);
@@ -97,6 +99,7 @@ void TapeErase(void);
 unsigned int GetTapeLength(void);
 void TapeQuickSave(void);
 void TapeQuickLoad(void);
+void InsertSolutionTape(void);
 
 void AutoPlayTape(void);