mirror of
https://github.com/blondie7575/GSCats.git
synced 2025-01-23 03:30:07 +00:00
Fix scrolling speed
ALso added MAME boot script
This commit is contained in:
parent
0f2d1e7f06
commit
d37d1165f8
6
boot_mame.sh
Executable file
6
boot_mame.sh
Executable 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
|
||||
|
@ -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
|
||||
|
BIN
gscats.2mg
BIN
gscats.2mg
Binary file not shown.
8
input.s
8
input.s
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user