diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-05-15 04:19:39 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-05-17 18:03:31 -0500 |
| commit | a4bb0dafb4bebeed78452498a36b8ae19fe2e495 (patch) | |
| tree | dfc5f5907af6b1db1025e46ad3758f85e2c74305 /Source/Core/VideoCommon/BPStructs.cpp | |
| parent | a2d73ed525c66aaeac83294ccf3f946c0c13390f (diff) | |
Removes ZeroFrog's "optimized" memcpy and memcmp functions.
These were only compiled in on Windows and x86_32.
They provided "optimized" copies and compares based on blocksizes for the AMD Athlon and Duron CPU families.
The code was taken from something that AMD provides with a as-is license.
Just get rid of this crap.
Diffstat (limited to 'Source/Core/VideoCommon/BPStructs.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BPStructs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp index d3caaf49d3..f25a6dd3c5 100644 --- a/Source/Core/VideoCommon/BPStructs.cpp +++ b/Source/Core/VideoCommon/BPStructs.cpp @@ -278,7 +278,7 @@ void BPWritten(const BPCmd& bp) ptr = GetPointer((bpmem.tmem_config.tlut_src & 0xFFFFF) << 5); if (ptr) - memcpy_gc(texMem + tlutTMemAddr, ptr, tlutXferCount); + memcpy(texMem + tlutTMemAddr, ptr, tlutXferCount); else PanicAlert("Invalid palette pointer %08x %08x %08x", bpmem.tmem_config.tlut_src, bpmem.tmem_config.tlut_src << 5, (bpmem.tmem_config.tlut_src & 0xFFFFF)<< 5); |
