diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-07-13 11:27:34 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-07-13 11:27:34 -0700 |
commit | 314760246871f739c19edbb8afa7aa6b157684ac (patch) | |
tree | b8b73bd6efbfee4dd9611d8a4c235453d41ea4d6 | |
parent | 610ac5c3a51a3e8a55f3f4e7f578daca2400b56b (diff) |
Use charmap values for highscores names.
-rwxr-xr-x | data/initial_high_scores.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/initial_high_scores.asm b/data/initial_high_scores.asm index 9fa945e..66542dd 100755 --- a/data/initial_high_scores.asm +++ b/data/initial_high_scores.asm @@ -1,21 +1,21 @@ InitialHighScores: ; 0xd42e ; TODO: Use text instead of raw bytes for the names. bigBCD6 50000000 - db $4e, $49, $4e ; "NIN" + db "NIN" db $00, $00, $00, $00 bigBCD6 40000000 - db $43, $52, $45 ; "CRE" + db "CRE" db $00, $00, $00, $00 bigBCD6 30000000 - db $47, $41, $4d ; "GAM" + db "GAM" db $00, $00, $00, $00 bigBCD6 20000000 - db $48, $41, $4c ; "HAL" + db "HAL" db $00, $00, $00, $00 bigBCD6 10000000 - db $4a, $55, $50 ; "JUP" + db "JUP" db $00, $00, $00, $00 |