mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
CDVD / Common: Use u32 for PSXCLK instead of u64 (yeah, it fixes warnings)
This commit is contained in:
parent
40425e3bee
commit
e4c1dc2359
@ -35,7 +35,7 @@
|
||||
|
||||
cdvdStruct cdvd;
|
||||
|
||||
s64 PSXCLK = 36864000;
|
||||
u32 PSXCLK = 36864000;
|
||||
|
||||
static constexpr s32 GMT9_OFFSET_SECONDS = 9 * 60 * 60; // 32400
|
||||
|
||||
|
||||
@ -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 );
|
||||
|
||||
Loading…
Reference in New Issue
Block a user