next round of standard compiler fixes (#2969)

* next round of standard compiler fixes

* Fix weak function order issue

* fix missmatch with ShieldD version
This commit is contained in:
kipcode66
2025-12-21 20:48:09 -05:00
committed by GitHub
parent dd7c91f3d3
commit 9ac6dd0044
21 changed files with 74 additions and 44 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
#include "JSystem/JAudio2/JASMutex.h"
#include "JSystem/JKernel/JKRHeap.h"
#include "JSystem/JUtility/JUTAssert.h"
#include "stdint.h"
JASBasicWaveBank::JASBasicWaveBank() {
mWaveTable = NULL;
@@ -130,5 +131,5 @@ int JASBasicWaveBank::TWaveHandle::getWavePtr() const {
if (base == 0) {
return 0;
}
return (int)base + field_0x4.field_0x08;
return (intptr_t)base + field_0x4.field_0x08;
}