On 9 Oct 2011 15:08:45 +0000, Chris Young wrote:

> Patch attached.

Is now anyway!
--- ram:arcem-src/amiga/DispKbd.c       2011-10-07 23:35:32 
+++ Files:Projects/arcem-src/amiga/DispKbd.c    2011-10-09 15:01:25 
@@ -388,9 +388,10 @@ static void PDD_Name(Host_ChangeMode)(AR
 
 static void PDD_Name(Host_SetPaletteEntry)(ARMul_State *state,int i,unsigned 
int phys)
 {
-       int r = (phys & 0xf)*0x11;
-       int g = ((phys>>4) & 0xf)*0x11;
-       int b = ((phys>>8) & 0xf)*0x11;
+       ULONG r = ((phys & 0xf)*0x11) << 24;
+       ULONG g = (((phys>>4) & 0xf)*0x11) << 24;
+       ULONG b = (((phys>>8) & 0xf)*0x11) << 24;
+
        IGraphics->SetRGB32(&screen->ViewPort,i,r,g,b);
 }
 
------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
-- 
arcem-devel mailing list
arcem-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/arcem-devel

Reply via email to