From 3ba98392b3feca56d244eb4dd49567fd5688fb4a Mon Sep 17 00:00:00 2001 From: cottonvibes Date: Sun, 17 Aug 2008 14:37:57 +0000 Subject: [PATCH] flush to zero will now only be enabled with the Denormals speed hack git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@47 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/Misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Misc.h b/pcsx2/Misc.h index 0a4a872563..679fd077b0 100644 --- a/pcsx2/Misc.h +++ b/pcsx2/Misc.h @@ -58,7 +58,7 @@ #define CHECK_EESYNC_HACK (Config.Hacks & 0x1) #define CHECK_IOPSYNC_HACK (Config.Hacks & 0x10) #define CHECK_EE_IOP_EXTRA (Config.Hacks & 0x20) -#define CHECK_DENORMALS ((Config.Hacks & 0x8) ? 0xffc0 : 0xff80) //If enabled, Denormals are Zero for the recs +#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_FASTBRANCHES (Config.Hacks & 0x80) #define CHECK_FRAMELIMIT (Config.Options&PCSX2_FRAMELIMIT_MASK)