CDVD / Common: Use u32 for PSXCLK instead of u64 (yeah, it fixes warnings)

This commit is contained in:
Ty 2025-10-25 12:44:39 -04:00 committed by Ty
parent 40425e3bee
commit e4c1dc2359
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
cdvdStruct cdvd;
s64 PSXCLK = 36864000;
u32 PSXCLK = 36864000;
static constexpr s32 GMT9_OFFSET_SECONDS = 9 * 60 * 60; // 32400

View File

@ -7,7 +7,7 @@
static const u32 BIAS = 2; // Bus is half of the actual ps2 speed
static const u32 PS2CLK = 294912000; //hz /* 294.912 mhz */
extern s64 PSXCLK; /* 36.864 Mhz */
extern u32 PSXCLK; /* 36.864 Mhz */
#include "Memory.h"
@ -21,4 +21,4 @@ extern s64 PSXCLK; /* 36.864 Mhz */
#include <string>
extern std::string ShiftJIS_ConvertString( const char* src );
extern std::string ShiftJIS_ConvertString( const char* src, int maxlen );
extern std::string ShiftJIS_ConvertString( const char* src, int maxlen );