From 71d93bdbc82263e36aace25c117a570564b251a0 Mon Sep 17 00:00:00 2001 From: Rodolfo Osvaldo Bogado Date: Wed, 26 Jan 2011 03:00:00 +0000 Subject: [PATCH] little fix for my last commit git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6921 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/VertexLoader_Color.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/VertexLoader_Color.cpp b/Source/Core/VideoCommon/Src/VertexLoader_Color.cpp index 295af2324e..637456d982 100644 --- a/Source/Core/VideoCommon/Src/VertexLoader_Color.cpp +++ b/Source/Core/VideoCommon/Src/VertexLoader_Color.cpp @@ -71,7 +71,7 @@ __forceinline void _SetCol6666(u32 val) __forceinline void _SetCol565(u16 val) { u32 col = (val >> 8) & 0xF8; - col |= (val << 3) & 0xFC00; + col |= (val << 5) & 0xFC00; col |=(((u32)val) << 19) & 0xF80000; col |= (col >> 5) & 0x070007; col |= (col >> 6) & 0x000300;