diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-12-09 22:20:50 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-12-09 22:20:50 +0000 |
| commit | e4505787109093658b23d0c2e5bc065d900ea839 (patch) | |
| tree | 20bbc294aaf85a20f14475700e97261be1432585 /Source/Core/VideoCommon/Src/TextureDecoder.cpp | |
| parent | f51a08c60412492cffabe8f17fb47fae2b8e3b8d (diff) | |
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
Diffstat (limited to 'Source/Core/VideoCommon/Src/TextureDecoder.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/TextureDecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.cpp b/Source/Core/VideoCommon/Src/TextureDecoder.cpp index e20b5368d6..f9d943ffbf 100644 --- a/Source/Core/VideoCommon/Src/TextureDecoder.cpp +++ b/Source/Core/VideoCommon/Src/TextureDecoder.cpp @@ -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) |
