From 86f6e8cc1ea0dcb6306efeffe69700ed07ed8740 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Wed, 18 Sep 2013 12:27:50 +0200 Subject: Better fix for issue 6614: ISOProperties should store integer settings for PHack booleans. INIFile is stupid, please kill it with fire. --- Source/Core/VideoCommon/Src/VideoConfig.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Source/Core/VideoCommon') diff --git a/Source/Core/VideoCommon/Src/VideoConfig.cpp b/Source/Core/VideoCommon/Src/VideoConfig.cpp index 9403af8d23..e81807985a 100644 --- a/Source/Core/VideoCommon/Src/VideoConfig.cpp +++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp @@ -202,10 +202,7 @@ void VideoConfig::GameIniLoad(const char* default_ini_file, const char* local_in CHECK_SETTING("Video_Hacks", "EFBCopyCacheEnable", bEFBCopyCacheEnable); CHECK_SETTING("Video_Hacks", "EFBEmulateFormatChanges", bEFBEmulateFormatChanges); - // XXX: iPhackvalue[0] aka. projection hack enabled is an integer. WTF. - bool phack_enabled = iPhackvalue[0]; - CHECK_SETTING("Video", "ProjectionHack", phack_enabled); - iPhackvalue[0] = phack_enabled; + CHECK_SETTING("Video", "ProjectionHack", iPhackvalue[0]); CHECK_SETTING("Video", "PH_SZNear", iPhackvalue[1]); CHECK_SETTING("Video", "PH_SZFar", iPhackvalue[2]); CHECK_SETTING("Video", "PH_ExtraParam", iPhackvalue[3]); -- cgit v1.2.3