More explicit C++ style type definition for PSXCLK, to ensure compilers avoid mathematical overflows. :)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1927 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine
2009-09-29 16:20:13 +00:00
parent 44464b812a
commit abf0cbde47
+1 -1
View File
@@ -15,7 +15,7 @@
#pragma once
#define PSXCLK (36864000ULL) /* 36.864 Mhz */
static const s64 PSXCLK = 36864000; /* 36.864 Mhz */
#include "R3000A.h"
#include "Common.h"