diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-10 15:41:05 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-10 15:41:05 -0400 |
| commit | e42bd5b6042e7d3a5ee8c7643b379a606b986811 (patch) | |
| tree | dbf85d1b586d07e21e36206fad132668c22f2f79 | |
| parent | f3af088deabc1c3f90d22c43dcda9c5b8344bc86 (diff) | |
| download | fujinet-chat-e42bd5b6042e7d3a5ee8c7643b379a606b986811.tar.gz | |
Stop overwriting the users colors in loading2.xex.
| -rw-r--r-- | loading.asm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/loading.asm b/loading.asm index 9c93258..2932c8f 100644 --- a/loading.asm +++ b/loading.asm @@ -2,7 +2,6 @@ save_dlist_loc = $fe -;msg .sbyte " Loading FujiNet Config " msg .sbyte " Loading FujiNetChat " .if .def CLIENT @@ -28,10 +27,14 @@ wloop rts init + .if .not .def CLIENT + ; only set the default colors for loading1.xex; don't + ; overwrite the colors the user chose in the config segment. lda #$c2 sta $02c6 ; COLOR2 lda #$ce sta $02c5 ; COLOR1 + .endif lda $0230 sta save_dlist_loc lda $0231 |
