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 changed files with 1 additions and 1 deletions

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"