X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Ftape.h;h=f32ad694c634c359ff1b0471a4969129b121b6a7;hp=e1482e4768e29ec99fabef8a576ae54c5c328286;hb=91afd13180ad610e2a6cbef32b85677cf8148864;hpb=3440a4bbdb7531fc5a72b3fc1fb57f245d59f7ed diff --git a/src/tape.h b/src/tape.h index e1482e47..f32ad694 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);