mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-09 10:47:24 -05:00
another minor docstring
This commit is contained in:
parent
49c51e03d0
commit
e13cdeab11
|
|
@ -29,6 +29,10 @@ button_masks = vba_wrapper.core.VBA.button_masks
|
|||
button_combiner = vba_wrapper.core.VBA.button_combine
|
||||
|
||||
def translate_chars(charz):
|
||||
"""
|
||||
Translate a string from the in-game format to readable form. This is
|
||||
accomplished through the same lookup table that the preprocessors use.
|
||||
"""
|
||||
result = ""
|
||||
for each in charz:
|
||||
result += chars[each]
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user