Compare commits

...
1 Commits
Author SHA1 Message Date
refractionpcsx2 6db638dc03 SPU2: Pass IOP cycle count at 64bit 2026-08-19 14:00:41 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -81,6 +81,6 @@ void SPU2writeDMA7Mem(u16* pMem, u32 size);
extern u64 lClocks;
extern void CounterUpdate(u32 DMAICounter);
extern void TimeUpdate(u32 cClocks);
extern void TimeUpdate(u64 cClocks);
extern void SPU2_FastWrite(u32 rmem, u16 value);
+1 -1
View File
@@ -314,7 +314,7 @@ __forceinline void CheckDMAProgress(int cid)
static constexpr uint TickInterval = 768;
static constexpr int SanityInterval = 4800;
__forceinline void TimeUpdate(u32 cClocks)
__forceinline void TimeUpdate(u64 cClocks)
{
u32 dClocks = cClocks - lClocks;