TLB hack plus some project changes. I only get a Konami logo though in MGS. Sonic1, plz fix :p

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1467 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-12-09 22:20:50 +00:00
parent f51a08c604
commit e450578710
13 changed files with 132 additions and 40 deletions

View File

@ -390,7 +390,7 @@ PC_TexFormat TexDecoder_Decode(u8 *dst, const u8 *src, int width, int height, in
#if (defined(_WIN32) || (defined (_M_X64) && !defined(_WIN32)))
__m128i Lmask = _mm_set1_epi8 (0x0F);
__m128i Hmask = _mm_set1_epi8 (0xF0);
__m128i* sseSrc = (__m128i *)src;
const __m128i* sseSrc = (const __m128i *)src;
__m128i* sseDst = (__m128i *)dst;
for (int y = 0; y < height; y += 8)
for (int x = 0; x < width; x += 8)