fixed a typo

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@48 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
cottonvibes 2008-08-17 17:03:08 +00:00 committed by Gregory Hainaut
parent 3ba98392b3
commit 974730dd08
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@
#define CHECK_EESYNC_HACK (Config.Hacks & 0x1) #define CHECK_EESYNC_HACK (Config.Hacks & 0x1)
#define CHECK_IOPSYNC_HACK (Config.Hacks & 0x10) #define CHECK_IOPSYNC_HACK (Config.Hacks & 0x10)
#define CHECK_EE_IOP_EXTRA (Config.Hacks & 0x20) #define CHECK_EE_IOP_EXTRA (Config.Hacks & 0x20)
#define CHECK_DENORMALS ((Config.Hacks & 0x8) ? 0x7fc0 : 0xff80) //If enabled, Denormals are Zero for the recs; and flush to zero is enabled as well #define CHECK_DENORMALS ((Config.Hacks & 0x8) ? 0xffc0 : 0x7f80) //If enabled, Denormals are Zero for the recs; and flush to zero is enabled as well
#define CHECK_FASTBRANCHES (Config.Hacks & 0x80) #define CHECK_FASTBRANCHES (Config.Hacks & 0x80)
#define CHECK_FRAMELIMIT (Config.Options&PCSX2_FRAMELIMIT_MASK) #define CHECK_FRAMELIMIT (Config.Options&PCSX2_FRAMELIMIT_MASK)