X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.h;h=03cc3d24812d87fd7037deffb81c5b5d4e7b9b42;hb=7892cce9f39489a779f8fad4a3e756b0bb8dbee5;hp=6a41a94d8bdf96ae53763d725bc4550aa3d8fbb6;hpb=c9433eab5c4317ed4f89164b386a7d33562e29be;p=rocksndiamonds.git diff --git a/src/tape.h b/src/tape.h index 6a41a94d..03cc3d24 100644 --- a/src/tape.h +++ b/src/tape.h @@ -76,9 +76,11 @@ #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,8 +99,12 @@ void TapeErase(void); unsigned int GetTapeLength(void); void TapeQuickSave(void); void TapeQuickLoad(void); +void InsertSolutionTape(void); + +void AutoPlayTape(void); void CreateTapeButtons(); +void FreeTapeButtons(); void MapTapeEjectButton(); void MapTapeIndexButton(); void MapTapeButtons();