modmuss50 2020-03-16 22:29:05 +00:00
parent ee462f8f9e
commit 00c65f54ed
1 changed files with 1 additions and 2 deletions

View File

@ -232,8 +232,7 @@ public class RunConfig {
char c = s.charAt(i);
if (c == '@' && i > 0 && s.charAt(i - 1) == '@' || c == ' ') {
ret.append("@@");
ret.append(Integer.toString(c, 16));
ret.append(String.format("@@%04x", (int) c));
} else {
ret.append(c);
}