Use consistent s32/u32 (#2964)

* cleanup long usage

* fix regression
This commit is contained in:
roeming
2025-12-18 13:31:44 -08:00
committed by GitHub
parent 7cae156176
commit 93067110f6
16 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ struct JASCalc {
}
f32 fake1();
f32 fake2(long x);
f32 fake2(s32 x);
f32 fake3();
static const s16 CUTOFF_TO_IIR_TABLE[128][4];
+1 -1
View File
@@ -3,7 +3,7 @@
#include "dolphin/types.h"
typedef long JASCallback(void*);
typedef s32 JASCallback(void*);
/**
* @ingroup jsystem-jaudio
+1 -1
View File
@@ -16,7 +16,7 @@ struct JASProbe {
static JASProbe* sProbeTable[16];
/* 0x000 */ char const* mName;
/* 0x004 */ long mStartTime;
/* 0x004 */ s32 mStartTime;
/* 0x008 */ f32 _08;
/* 0x00C */ f32 _0C;
/* 0x010 */ f32 _10;
+1 -1
View File
@@ -58,7 +58,7 @@ struct JASWaveArc : JASDisposer {
struct loadToAramCallbackParams {
// not official struct name
/* 0x0 */ JASWaveArc* mWavArc;
/* 0x4 */ long mEntryNum;
/* 0x4 */ s32 mEntryNum;
/* 0x8 */ u32 mBase;
/* 0xC */ u32 _c;
};