Skip to content
Snippets Groups Projects
Commit 7202aac1 authored by deuce's avatar deuce
Browse files

Fix bug in last commit that resulted in C64 colours being broken for outputs

with extended palettes.
parent cdc8155d
No related branches found
No related tags found
No related merge requests found
......@@ -4691,7 +4691,7 @@ CIOLIBEXPORT char* CIOLIBCALL cterm_write(struct cterminal * cterm, const void *
/* Now rejigger the current modes palette... */
if (cio_api.options & CONIO_OPT_EXTENDED_PALETTE)
palette_offset = 0;
palette_offset = 16;
mpalette = get_modepalette(palette);
if (mpalette) {
for (i=0; i < 16; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment