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
This commit is contained in:
gregory.hainaut 2010-08-02 12:52:42 +00:00
parent 7b05db1351
commit e1b8da387c
1 changed files with 2 additions and 2 deletions

View File

@ -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"