]> git.saurik.com Git - wxWidgets.git/commitdiff
OS2RGB def fix
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 18 Dec 2000 05:31:33 +0000 (05:31 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 18 Dec 2000 05:31:33 +0000 (05:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index e8fc516dc6997a8d9afba2dd1cd60deadf68ca7b..8c13ac9d345698abc6a1f8bf4ad5615c895bc7c6 100644 (file)
@@ -1831,7 +1831,7 @@ typedef unsigned short  WORD;
 // WIN32 graphics types for OS/2 GPI
 
 // RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def
 // WIN32 graphics types for OS/2 GPI
 
 // RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def
-#define OS2RGB(r,g,b) ((DWORD ((BYTE) (r) | ((WORD) (g) << 8)) | (((DWORD)(BYTE)(b)) << 16)))
+#define OS2RGB(r,g,b) ((DWORD ((BYTE) (b) | ((WORD) (g) << 8)) | (((DWORD)(BYTE)(r)) << 16)))
 
 typedef unsigned long COLORREF;
 #define GetBValue(rgb) ((BYTE)((rgb) >> 16))
 
 typedef unsigned long COLORREF;
 #define GetBValue(rgb) ((BYTE)((rgb) >> 16))