Revert secure funcs part 2

This commit is contained in:
GabsPuNs
2026-04-18 14:10:17 -04:00
parent 86879aa2fc
commit 28cd1dd580
14 changed files with 32 additions and 32 deletions

View File

@@ -115,7 +115,7 @@ byteArray ArchiveFile::getFile(const wstring &filename)
#if defined _XBOX_ONE || defined __ORBIS__ || defined _WINDOWS64
out = byteArray(data->filesize );
memcpy_s( out.data, out.length, m_cachedData + data->ptr, data->filesize );
memcpy( out.data, m_cachedData + data->ptr, data->filesize );
#else
#ifdef _UNICODE