Re: vgaonly on PPC Macintosh displays wrong colors and skewed text
Posted on 2010-02-02, 15:35
In Copy code to clipboard 1 //Set entry in 16bit output lookup table 2 vga.dac.xlat16[index] = ((blue>>1)&0x1f) | (((green)&0x3f)<<5) | (((red>>1)&0x1f) << 11); in vga_dac.cpp if at all. But I think we need to get or set the color bit order with SDL somewhere. Dominus had reported a similar color …