X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Ftape.h;h=bc80f440b3ec191dd6f911caf1d1e01674fedd27;hp=03849d0a45ab049011ecd3ef27808992fe0555fa;hb=47da774c66f9325f9d27cddb5a697514154e2de9;hpb=5dfaa039ed3cb9de43f565346ee4b18b03ec2961 diff --git a/src/tape.h b/src/tape.h index 03849d0a..bc80f440 100644 --- a/src/tape.h +++ b/src/tape.h @@ -14,8 +14,9 @@ /* values for TapeTogglePause() */ -#define TAPE_TOGGLE_MANUAL TRUE -#define TAPE_TOGGLE_AUTOMATIC FALSE +#define TAPE_TOGGLE_AUTOMATIC 0 +#define TAPE_TOGGLE_MANUAL (1 << 0) +#define TAPE_TOGGLE_PLAY_PAUSE (1 << 1) /* values for tape properties */ #define MAX_TAPE_LEN (1000 * FRAMES_PER_SECOND) /* max.time x fps */ @@ -231,6 +232,8 @@ void MapTapeEjectButton(); void MapTapeWarpButton(); void MapTapeButtons(); void UnmapTapeButtons(); +void RedrawTapeButtons(); +void RedrawOrRemapTapeButtons(); void HandleTapeButtonKeys(Key);