Tweak grid border

This commit is contained in:
Andy McFadden 2023-02-15 20:48:57 -08:00
parent f46d8f4920
commit 74cc55de29
1 changed files with 4 additions and 1 deletions

View File

@ -434,7 +434,7 @@ namespace RuntimeData.Commodore {
private const byte TRANSPARENT = 16;
#if SHOW_BORDER
private const byte BORDER_COLOR = 0;
private const byte BORDER_COLOR = 17;
#else
private const byte BORDER_COLOR = TRANSPARENT;
#endif
@ -459,6 +459,9 @@ namespace RuntimeData.Commodore {
vb.SetColor(14, 0xff, 0x6c, 0x5e, 0xb5); // 14=light blue
vb.SetColor(15, 0xff, 0x95, 0x95, 0x95); // 15=light grey
vb.SetColor(16, 0, 0, 0, 0); // 16=transparent
#if SHOW_BORDER
vb.SetColor(17, 0xff, 0x00, 0xd6, 0xff); // 17=grid border
#endif
}
}
}