Compile fixes for previous commit

oops
This commit is contained in:
PJB3005
2026-02-24 15:29:08 +01:00
parent 4fb2389b43
commit 436a500c65
3 changed files with 9 additions and 2 deletions
+3 -1
View File
@@ -15,9 +15,11 @@ public:
JGadget_outMessage(MessageFunc fn, const char* file, int line);
~JGadget_outMessage();
#if !TARGET_PC
JGadget_outMessage& operator<<(int param_1) { return *this << (s32)param_1; }
JGadget_outMessage& operator<<(u16);
JGadget_outMessage& operator<<(uint);
#endif
JGadget_outMessage& operator<<(u16);
JGadget_outMessage& operator<<(u8 param_1) { return *this << (char)param_1; }
JGadget_outMessage& operator<<(const char* str);
JGadget_outMessage& operator<<(char);
+5
View File
@@ -5,8 +5,13 @@ typedef signed char s8;
typedef unsigned char u8;
typedef signed short int s16;
typedef unsigned short int u16;
#if TARGET_PC
typedef signed int s32;
typedef unsigned int u32;
#else
typedef signed long s32;
typedef unsigned long u32;
#endif
typedef signed long long int s64;
typedef unsigned long long int u64;
+1 -1
View File
@@ -140,6 +140,6 @@ int JOREventCallbackListNode::JORAct(u32 eventID, const char* eventName) {
}
*/
#pragma mark J3DPSMtxArrayConcat
void J3DPSMtxArrayConcat(float (*a)[4], float (*b)[4], float (*out)[4], unsigned long count) {
void J3DPSMtxArrayConcat(float (*a)[4], float (*b)[4], float (*out)[4], u32 count) {
puts("J3DPSMtxArrayConcat is a stub");
}