This commit is contained in:
Koji Ikarashi 2015-11-18 08:30:35 -08:00
parent ccdc95d084
commit ac6a547cdd
3 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Assets were created in NESST and Famitracker.
### Updating Strings
All strings in SplatooD are formatted as EBCDIC with an offset. Use the Python script in `util/ebcdic.py` to convert ASCII to appropriate arrays.
Strings in SplatooD are formatted as nul-terminated tileset IDs. There is a tool in `util/string.py` to generate C arrays from input text.
### Updating Nametable Headers

View File

@ -1,6 +1,6 @@
function credit_line() {
echo -n "const unsigned char credits_$1[] = ";
echo "$2" | python ebcdic.py
echo "$2" | python string.py
}