diff --git a/grafproc.asm b/grafproc.asm index b9fd115..c31e8e4 100644 --- a/grafproc.asm +++ b/grafproc.asm @@ -551,16 +551,15 @@ NotHigherByte02 sec lda xtankstableL,x sbc #$0f + ; and clear lowest bit to be sure that the X coordinate is even + ; (this is to have P/M background look nice) + ; "AND" does not change "Carry" bit. + and #$fe sta xtankstableL,x bcs NotHigherByte01 dec xtankstableH,x NotHigherByte01 -; and clear lowest bit to be sure that the X coordinate is even -; (this is to have P/M background look nice) - lda xtankstableL,x - and #$fe - sta xtankstableL,x inx Cpx NumberOfPlayers bne StillRandomize02 diff --git a/scorch.bin b/scorch.bin index fe6f020..261139b 100644 Binary files a/scorch.bin and b/scorch.bin differ diff --git a/scorch.xex b/scorch.xex index d603c12..72f6e2f 100644 Binary files a/scorch.xex and b/scorch.xex differ