mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-21 21:40:32 -04:00
Merge remote-tracking branch 'decomp/main'
This commit is contained in:
@@ -1,13 +1,23 @@
|
||||
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
||||
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
||||
|
||||
#include "JSystem/JAHostIO/JAHioUtil.h"
|
||||
#include <cstdarg>
|
||||
#include <cstdio>
|
||||
#include "JSystem/JAHostIO/JAHUpdate.h"
|
||||
#include "JSystem/JAHostIO/JAHioUtil.h"
|
||||
#include "JSystem/JHostIO/JORFile.h"
|
||||
|
||||
char JAHioUtil::mStringBuffer[256];
|
||||
|
||||
JAHioNode* JAHUpdate::spNode;
|
||||
JORMContext* JAHUpdate::spMc;
|
||||
|
||||
static char* dummy(JORDir* dir) {
|
||||
return std::strrchr(dir->getFilename(), '\n');
|
||||
}
|
||||
|
||||
char* JAHioUtil::getString(const char* msg, ...) {
|
||||
va_list args;
|
||||
va_start(msg, args);
|
||||
va_start(args, msg);
|
||||
vsprintf(mStringBuffer, msg, args);
|
||||
va_end(args);
|
||||
return mStringBuffer;
|
||||
|
||||
Reference in New Issue
Block a user