Fix formatFilename bug

This commit is contained in:
Christopher Monsanto 2021-12-28 21:15:53 -05:00
parent 1dc7fa5941
commit af374b6295

View File

@ -105,6 +105,6 @@ export function formatFilename(si : InputSpriteFilename) {
}
}
extra.sort();
s += extra.join();
s += extra.join('');
return s;
}