Fix scrolling speed

ALso added MAME boot script
This commit is contained in:
blondie7575 2021-07-24 13:55:16 -07:00
parent 0f2d1e7f06
commit d37d1165f8
4 changed files with 15 additions and 5 deletions

6
boot_mame.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
MAME=/Applications/Ample.app/Contents/MacOS/mame64
cd '/Users/qd/Library/Application Support/Ample'
$MAME apple2gsr1 -skip_gameinfo -nosamples -window -nomax -bgfx_screen_chains unfiltered -flop3 /Users/qd/Documents/Apple2/GSCats/gscats.2mg

View File

@ -130,9 +130,9 @@ renderGameObject:
jsr DrawSpriteBank
RESTORE_AXY ; DEBUG BOUNDS RENDER
lda #11 ; DEBUG BOUNDS RENDER
clc ; DEBUG BOUNDS RENDER
jsr DrawSpriteBank ; DEBUG BOUNDS RENDER
; lda #11 ; DEBUG BOUNDS RENDER
; clc ; DEBUG BOUNDS RENDER
; jsr DrawSpriteBank ; DEBUG BOUNDS RENDER
renderGameobjectDone:
RESTORE_XY

Binary file not shown.

View File

@ -52,7 +52,9 @@ kbdScanRightArrow:
lda mapScrollPos
cmp #VISIBLETERRAINWIDTH-VISIBLETERRAINWINDOW
beq kbdScanDone
; inc
inc
inc
inc
inc
sta mapScrollRequested
rts
@ -63,7 +65,9 @@ kbdScanLeftArrow:
lda mapScrollPos
beq kbdScanDone
dec
; dec
dec
dec
dec
sta mapScrollRequested
rts