Skip to content

Commit

Permalink
* overprint 255 lives if lost all lives (thanks to als).
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg-N-Cher committed Jun 10, 2021
1 parent 7f04dfd commit 0cc9254
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
@@ -1,6 +1,11 @@
Lvov/Obj/*.asm
Lvov/Obj/*.c
Lvov/Obj/*.o
ZX/Obj/*.asm
ZX/Obj/*.c
ZX/Obj/*.lst
ZX/Obj/*.rel
ZX/Obj/*.sym
ZX/Sources/*.asm
ZX/Sources/*.bin
ZX/Sources/*.tap
Binary file modified ZX/Bolder16K.tap
Binary file not shown.
4 changes: 3 additions & 1 deletion ZX/Mod/Labirint.Mod
Expand Up @@ -117,7 +117,9 @@ VAR
i, n: NatInt;
BEGIN
TwoStep(-1);
FOR n := 0 TO lives-1 DO Gr.DrawTile(n*2, 0, R.RightMan) END;
IF lives-1 >= 0 THEN
FOR n := 0 TO lives-1 DO Gr.DrawTile(n*2, 0, R.RightMan) END;
END;
Timer.Until;
i := 1;
WHILE (i < FieldHeight) DO
Expand Down

0 comments on commit 0cc9254

Please sign in to comment.