diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-11 05:47:37 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-11 05:47:37 -0500 |
commit | 12c87c593f65cc3db16fa5b322bc9bdd2b8d55e5 (patch) | |
tree | f10d29ef2b934523a7733793d7ee8696488d4425 | |
parent | 0c50cc1c673545843830334fe8d277c79e4b33cb (diff) | |
download | taipan-12c87c593f65cc3db16fa5b322bc9bdd2b8d55e5.tar.gz |
restore old default brightness (2nd brightest
-rw-r--r-- | newtitle.s | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -71,6 +71,7 @@ colorcount = (*-colorchoices)-1 textchoices: .byte $08,$0a,$0c,$0e textcount = (*-textchoices)-1 +default_text = textcount-1 ; 2nd brightest is default wait1jiffy: lda RTCLOK+2 @@ -285,7 +286,7 @@ start: sta CH ldx #0 ; X = index into bg color choices - ldy #textcount ; Y = index into text color choices + ldy #default_text ; Y = index into text color choices ; wait for user to press a key wait4key: |