summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/memcpy_amd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/Src/memcpy_amd.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/memcpy_amd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/memcpy_amd.cpp b/Source/Core/VideoCommon/Src/memcpy_amd.cpp
index 4bc3012e81..bd393560d4 100644
--- a/Source/Core/VideoCommon/Src/memcpy_amd.cpp
+++ b/Source/Core/VideoCommon/Src/memcpy_amd.cpp
@@ -465,8 +465,8 @@ End:
void * memcpy_amd(void *dest, const void *src, size_t n)
{
-memcpy(dest, src, n);
-return dest;
+ memcpy(dest, src, n);
+ return dest;
}