From e1b8da387cde68b938baa2885ccdebc1ddce700c Mon Sep 17 00:00:00 2001 From: "gregory.hainaut" Date: Mon, 2 Aug 2010 12:52:42 +0000 Subject: [PATCH] IPU (linux): fix pointer variable. Linux compilation is now fine. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3591 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/IPU/yuv2rgb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/IPU/yuv2rgb.cpp b/pcsx2/IPU/yuv2rgb.cpp index f9d4d006c5..67b03306f9 100644 --- a/pcsx2/IPU/yuv2rgb.cpp +++ b/pcsx2/IPU/yuv2rgb.cpp @@ -258,8 +258,8 @@ ihatemsvc: // offset to the middle of the sse2 table, so that we can use 1-byte address displacement // to access all fields: static const u8* sse2_tableoffset = ((u8*)&sse2_tables) + 64; - static const u8* mb8 = (u8*)decoder.mb8; - static u8* rgb32 = (u8*)decoder.rgb32; + static const u8* mb8 = (u8*)&decoder.mb8; + static u8* rgb32 = (u8*)&decoder.rgb32; __asm__ __volatile__ ( ".intel_syntax noprefix\n"