diff Discovery/Src/gfx_engine.c @ 1076:c87753e73eb8 Icon_Integration

Dev bugfix 50 pixel spacing: the control char '\007' was used for the new 50 pixel format style. This character was already in use as '\a' invert (same value different spelling) => The 50 pixel format has been switched to the control char '\033' which is not in use.
author Ideenmodellierer
date Sun, 22 Feb 2026 21:23:57 +0100
parents 3d9994033ae6
children
line wrap: on
line diff
--- a/Discovery/Src/gfx_engine.c	Sun Feb 22 20:00:00 2026 +0100
+++ b/Discovery/Src/gfx_engine.c	Sun Feb 22 21:23:57 2026 +0100
@@ -2139,7 +2139,7 @@
 			if(*pText == '\r') // carriage return, no newline
 				settings.Xdelta = 0;
 			else
-			if((*pText == '\007')) /* jump to next 50 pixel offset */
+			if((*pText == '\033')) /* jump to next 50 pixel offset */
 			{
 					settings.Xdelta = ((settings.Xdelta / 50) + 1) * 50;
 			}