mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
bugfix from Fatih
git-svn-id: svn://svn.cc65.org/cc65/trunk@4459 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b86ded5192
commit
ab6ff06e76
@ -554,7 +554,7 @@ exit: .if grmode = 9
|
||||
|
||||
; Mode 10 mapping
|
||||
.if grmode = 10
|
||||
; Map out of range colors like this:
|
||||
; Map out-of-range colors like this:
|
||||
; 9 -> 8
|
||||
; 10 -> 8
|
||||
; 11 -> 8
|
||||
@ -562,8 +562,8 @@ exit: .if grmode = 9
|
||||
; 13 -> 1
|
||||
; 14 -> 2
|
||||
; 15 -> 3
|
||||
cmp #8
|
||||
bcs @cont
|
||||
cmp #9
|
||||
bcc @cont
|
||||
sub #12
|
||||
bcs @cont
|
||||
lda #8
|
||||
|
Loading…
Reference in New Issue
Block a user