updating variable argument headers & minor fixes for register statement and header file placement

This commit is contained in:
kipcode66
2025-12-05 23:01:52 -05:00
parent 0b6c0c04e8
commit 138b15eecf
18 changed files with 140 additions and 129 deletions
@@ -2,7 +2,7 @@
#define _MSL_COMMON_PRINTF_H
#include "ansi_files.h"
#include "__va_arg.h"
#include <cstdarg>
#ifdef __cplusplus
extern "C" {
@@ -19,4 +19,4 @@ int vprintf(const char* format, va_list arg);
}
#endif
#endif /* _MSL_COMMON_PRINTF_H */
#endif /* _MSL_COMMON_PRINTF_H */
-24
View File
@@ -1,24 +0,0 @@
#ifndef D_DEBUG_PAD_H
#define D_DEBUG_PAD_H
#include "m_Do/m_Do_controller_pad.h"
#include "JSystem/JUtility/TColor.h"
class dDebugPad_c {
public:
dDebugPad_c();
bool Active();
bool Update();
bool Report(int, int, JUtility::TColor, const char*, ...);
bool Enable(s32);
bool Trigger();
/* 0x0 */ u8 mIsActive;
/* 0x1 */ u8 mTrigger;
/* 0x4 */ s32 mMode;
};
extern dDebugPad_c dDebugPad;
#endif