2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:47:46 +00:00

Various stubs, and starting on core functionality

This commit is contained in:
2015-11-02 10:45:39 -08:00
parent 1e55a59568
commit b261e09f51
33 changed files with 360 additions and 70 deletions

View File

@@ -10,10 +10,9 @@ void CBasics::Init()
{
}
char STRINGIZE_STR[2048];
const char* CBasics::Stringize(const char* fmt, ...)
{
char STRINGIZE_STR[2048] = {0};
va_list ap;
va_start(ap, fmt);
vsnprintf(STRINGIZE_STR, 2048, fmt, ap);