diff --git a/averybreakout.asm b/averybreakout.asm index 1bb88a0..f06e5b6 100644 --- a/averybreakout.asm +++ b/averybreakout.asm @@ -24,8 +24,6 @@ icl 'lib/ATARISYS.ASM' icl 'lib/MACRO.ASM' -CR_PC = 13 ; PC CR code -LF_PC = 10 ; PC LF code display = $a000 screenWidth = 80 ;in pixels screenBytes = screenWidth/2 ; in bytes @@ -1324,7 +1322,7 @@ eXistenZstackFill ;previously the whole band of ballz ;VBI - mva #screenWidth/2 racquetPos + mva #screenWidth/2-racquetSize/4 racquetPos vmain vint,7 mva #1 color diff --git a/averybreakout.xex b/averybreakout.xex index cd5346f..dd4175e 100644 Binary files a/averybreakout.xex and b/averybreakout.xex differ diff --git a/lib/ATARISYS.ASM b/lib/ATARISYS.ASM index b0e3986..7b11904 100644 --- a/lib/ATARISYS.ASM +++ b/lib/ATARISYS.ASM @@ -734,3 +734,5 @@ scr32 = @dmactl(narrow|dma|players|missiles|lineX1) ; --------------------------------------------------------------------------- EOL = $9b +CR_PC = 13 ; PC CR code +LF_PC = 10 ; PC LF code