From b1ff0caaab35926036bbbf9602d9f27307fc3671 Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Fri, 25 May 2001 19:20:10 +0000 Subject: [PATCH] Alpha fix --- zsnes/src/win/winlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index aeaecc63..9e7082d8 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -2018,7 +2018,7 @@ void drawscreenwin(void) { color32=(((*(WORD *)(ScreenPtr))&0xF800)<<8)+ (((*(WORD *)(ScreenPtr))&0x07E0)<<5)+ - (((*(WORD *)(ScreenPtr))&0x001F)<<3)+0x7F000000; + (((*(WORD *)(ScreenPtr))&0x001F)<<3)+0xFF000000; // SURFDW[i]=color32; ScreenPtr+=2; }