shithub: ft2-clone

Download patch

ref: eaee288d876e3dd4e2fc0fa7ee9ab17bf8d1eb6c
parent: 22c28f1c0de3a76cac067309abfd77f8d508c2bb
author: Olav Sørensen <olav.sorensen@live.no>
date: Fri Jun 12 13:13:43 EDT 2020

Fix y position for panning envelope x/y coords

--- a/src/ft2_inst_ed.c
+++ b/src/ft2_inst_ed.c
@@ -2065,11 +2065,11 @@
 
 	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)