Previous 199869 Revisions Next

r17866 Thursday 13th September, 2012 at 14:32:24 UTC by Curt Coder
(MESS) Removed palette access. (nw)
[src/mess/machine]c64_xl80.c

trunk/src/mess/machine/c64_xl80.c
r17865r17866
9595      for (int bit = 0; bit < 8; bit++)
9696      {
9797         int x = (column * 8) + bit;
98         int color = BIT(data, 7) ? 7 : 0;
98         int color = BIT(data, 7);
9999
100100         bitmap.pix32(y, x) = RGB_MONOCHROME_WHITE[color];
101101

Previous 199869 Revisions Next


© 1997-2024 The MAME Team