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

@@ -632,7 +632,7 @@ void Texture::transferFromImage(BufferedImage *image)
if( image->getData( level ) )
{
memcpy_s( tempData, ww * hh * 4, image->getData( level ), ww * hh * 4);
memcpy( tempData, image->getData( level ), ww * hh * 4);
for (int y = 0; y < hh; y++)
{
for (int x = 0; x < ww; x++)