Forgot to change the regex pattern to look for 0x1a instead

Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com>
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
Nic0Nic0Nii 2022-06-02 19:45:43 +00:00
parent 73882feb2c
commit f9de8a5eed
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -47,7 +47,7 @@ public class DrawLoop {
} else {
currentCol=PaletteColor.values()[nextCol];
}
finalS=finalS.replaceFirst(Pattern.quote("%"+nextCol+" "),"");
finalS=finalS.replaceFirst(Pattern.quote("\u001a"+nextCol+" "),"");
} else
if (finalS.charAt(i)=='\n') {
xOffset+=(charCount+1)*f.getGlyphWidth();