1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-04 07:06:23 +00:00

Make the demo game compilable again.

This commit is contained in:
Chris Pressey 2018-03-06 15:52:21 +00:00
parent bda0202dee
commit 1d1612761b

View File

@ -385,6 +385,13 @@ define game_state_title_screen game_state_routine
{
ld y, 0
repeat {
// First we "clip" the index to 0-31 to ensure we don't
// read outside the bounds of the table:
ld a, y
and a, 31
ld y, a
ld a, press_fire_msg + y
st on, c