mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/GabsPuNs-MinecraftConsoles.git
synced 2026-06-25 21:16:08 +00:00
Use Secure print funcs. Remove LCE File System
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user