diff --git a/Atari/gr_basics.asm b/Atari/gr_basics.asm index 71de361..6c8691f 100644 --- a/Atari/gr_basics.asm +++ b/Atari/gr_basics.asm @@ -16,8 +16,7 @@ unPlotAfterX lda oldplotH,x sta oldplot+1 - lda oldply,x - tay + ldy oldply,x lda oldora,x sta (oldplot),y diff --git a/Atari/textproc.asm b/Atari/textproc.asm index 49e8b7e..d57c4f0 100644 --- a/Atari/textproc.asm +++ b/Atari/textproc.asm @@ -1114,12 +1114,10 @@ LastNameChar CheckKeys jsr HighlightLevel ; setting choosen level of the opponent (Moron, etc) ldx TankNr - lda JoyNumber,x - tay + ldy JoyNumber,x lda digits+1,y sta NameScreen2+11 ; display joystick port number - lda TankShape,x - tay + ldy TankShape,x lda digits+1,y sta NameScreen2+15 ; display tank shape number jsr CursorDisplay @@ -1626,8 +1624,7 @@ NextChar mva #0 displayposition ; overwrite first digit ; put AI symbol or joystick ldx TankNr - lda SkillTable,x - tay + ldy SkillTable,x bne ThisIsAI ldy JoyNumber,x iny ; tricky diff --git a/scorch.bin b/scorch.bin index 5765207..339d277 100644 Binary files a/scorch.bin and b/scorch.bin differ diff --git a/scorch.xex b/scorch.xex index a06a321..a2888e9 100644 Binary files a/scorch.xex and b/scorch.xex differ diff --git a/scorch_cart.xex b/scorch_cart.xex index 9646f00..01ce427 100644 Binary files a/scorch_cart.xex and b/scorch_cart.xex differ