Make the demo game compilable again.
Chris Pressey
4 years ago
1 changed file(s) with
7 addition(s)
and
0 deletion(s)
.
Raw diff
Collapse all
Expand all
+7
-0
eg/c64/demo-game.60p
less
more
384
384
{
385
385
ld y, 0
386
386
repeat {
387
388
// First we "clip" the index to 0-31 to ensure we don't
389
// read outside the bounds of the table:
390
ld a, y
391
and a, 31
392
ld y, a
393
387
394
ld a, press_fire_msg + y
388
395
389
396
st on, c