even more linux fixes

This commit is contained in:
georgemoralis 2024-05-15 13:09:05 +03:00
parent 074f3d3f88
commit 1431731503
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ int PS4_SYSV_ABI internal_memcpy_s(void* dest, rsize_t destsz, const void* src,
#ifdef _WIN64 #ifdef _WIN64
return memcpy_s(dest, destsz, src, count); return memcpy_s(dest, destsz, src, count);
#else #else
std::memcpy(dest, destsz, src, count); std::memcpy(dest, src, count);
return 0; // ALL OK return 0; // ALL OK
#endif #endif
} }