another minor docstring

This commit is contained in:
Bryan Bishop 2013-10-12 16:33:52 -05:00
parent 49c51e03d0
commit e13cdeab11

View File

@ -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]