From: Sébastien G. <kx...@us...> - 2004-09-15 22:13:03
|
Update of /cvsroot/vba/VisualBoyAdvance/src/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28314/gtk Modified Files: window.cpp Log Message: Added prefetch emulation. Fixed HuffUnComp BIOS emulation regarding the tree size (SourceForge #984608). Index: window.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/gtk/window.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** window.cpp 21 May 2004 20:44:26 -0000 1.24 --- window.cpp 15 Sep 2004 22:12:53 -0000 1.25 *************** *** 910,922 **** for (int i = 0; i < 0x10000; i++) { - #if G_BYTE_ORDER == G_LITTLE_ENDIAN - systemColorMap32[i] = (((i & 0x1f) << systemRedShift) - | (((i & 0x3e0) >> 5) << systemGreenShift) - | (((i & 0x7c00) >> 10) << systemBlueShift)); - #else systemColorMap32[i] = (((i & 0x1f) << systemRedShift) | (((i & 0x3e0) >> 5) << systemGreenShift) | (((i & 0x7c00) >> 10) << systemBlueShift)); - #endif } --- 910,916 ---- |