reduced space width to 1 to add up to 3 including character separators

This commit is contained in:
Patrick Haßel 2025-01-25 21:37:37 +01:00
parent 56dda350b4
commit 9a6ca32976

View File

@ -197,7 +197,7 @@ public:
}
if (character == ' ') {
*x += 3;
*x += 1;
return;
}