Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix c3404c0: Invalid syntax for string code table. #33

Merged
merged 1 commit into from
Apr 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nml/grfstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ def com_parse_string(val, lang_id):
'DKBLUE': {'unicode': r'\UE097', 'ascii': r'\97'},
'BLACK': {'unicode': r'\UE098', 'ascii': r'\98'},

'PUSH_COLOUR': {'unicode', r'\UE09A\1F', 'ascii': r'\9A\1F'},
'POP_COLOUR': {'unicode', r'\UE09A\20', 'ascii': r'\9A\20'},
'PUSH_COLOUR': {'unicode': r'\UE09A\1F', 'ascii': r'\9A\1F'},
'POP_COLOUR': {'unicode': r'\UE09A\20', 'ascii': r'\9A\20'},

# Deprecated string codes
'DWORD_S': {'unicode': r'\UE07B', 'ascii': r'\7B', 'deprecated': True, 'size': 4},
Expand Down