commit eaee288d876e3dd4e2fc0fa7ee9ab17bf8d1eb6c
parent 22c28f1c0de3a76cac067309abfd77f8d508c2bb
Author: Olav Sørensen <olav.sorensen@live.no>
Date: Fri, 12 Jun 2020 17:13:16 +0200
Fix y position for panning envelope x/y coords
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/ft2_inst_ed.c b/src/ft2_inst_ed.c
@@ -2065,11 +2065,11 @@ static void drawPanEnvCoords(int16_t tick, int16_t val)
sprintf(str, "%03d %02d", tick, val);
- textOutTiny(312, 276, str, video.palette[PAL_BCKGRND]);
- textOutTiny(313, 275, str, video.palette[PAL_BCKGRND]);
- textOutTiny(314, 276, str, video.palette[PAL_BCKGRND]);
- textOutTiny(313, 277, str, video.palette[PAL_BCKGRND]);
- textOutTiny(313, 276, str, video.palette[PAL_FORGRND]);
+ textOutTiny(312, 277, str, video.palette[PAL_BCKGRND]);
+ textOutTiny(313, 276, str, video.palette[PAL_BCKGRND]);
+ textOutTiny(314, 277, str, video.palette[PAL_BCKGRND]);
+ textOutTiny(313, 278, str, video.palette[PAL_BCKGRND]);
+ textOutTiny(313, 277, str, video.palette[PAL_FORGRND]);
}
void handleInstEditorRedrawing(void)