summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BPStructs.cpp
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2014-05-15 04:19:39 -0500
committerRyan Houdek <Sonicadvance1@gmail.com>2014-05-17 18:03:31 -0500
commita4bb0dafb4bebeed78452498a36b8ae19fe2e495 (patch)
treedfc5f5907af6b1db1025e46ad3758f85e2c74305 /Source/Core/VideoCommon/BPStructs.cpp
parenta2d73ed525c66aaeac83294ccf3f946c0c13390f (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.cpp2
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);