Minor linux compilation fix to yuv2rgb_sse2

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3588 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-08-01 23:39:30 +00:00
parent 61a4b537c4
commit 9c0ce26e42
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 // offset to the middle of the sse2 table, so that we can use 1-byte address displacement
// to access all fields: // to access all fields:
static const u8* sse2_tableoffset = ((u8*)&sse2_tables) + 64; static const u8* sse2_tableoffset = ((u8*)&sse2_tables) + 64;
static const macroblock_8* mb8 = (u8*)decoder.mb8; static const u8* mb8 = (u8*)decoder.mb8;
static macroblock_rgb32* rgb32 = (u8*)decoder.rgb32; static u8* rgb32 = (u8*)decoder.rgb32;
__asm__ __volatile__ ( __asm__ __volatile__ (
".intel_syntax noprefix\n" ".intel_syntax noprefix\n"