Use Secure print funcs. Remove LCE File System

This commit is contained in:
GabsPuNs
2026-04-14 03:44:00 -04:00
parent 40d48948ff
commit 76ee5fa8d8
86 changed files with 286 additions and 293 deletions

View File

@@ -55,7 +55,7 @@ C4JThread::C4JThread( C4JThreadStartFunc* startFunc, void* param, const char* th
m_stackSize = 16384;
#ifdef __PS3__
sprintf(m_threadName, "(4J) %s", threadName );
sprintf_s(m_threadName, "(4J) %s", threadName );
#else
sprintf_s(m_threadName,64, "(4J) %s", threadName );
#endif
@@ -133,7 +133,7 @@ C4JThread::C4JThread( const char* mainThreadName)
m_stackSize = 0;
#ifdef __PS3__
sprintf(m_threadName, "(4J) %s", mainThreadName);
sprintf_s(m_threadName, "(4J) %s", mainThreadName);
#else
sprintf_s(m_threadName, 64, "(4J) %s", mainThreadName);
#endif