summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFXVideo/macsrc/PluginConfigController.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-10-06 19:44:58 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-10-06 19:44:58 +0000
commit5305a7ec798d466678bca82ac3f3a2318cee6668 (patch)
tree9ee36385f31db65140e88c4dd6d2df7ecebc76c3 /macosx/plugins/DFXVideo/macsrc/PluginConfigController.m
parent1f00ddb10219feb4e732ed1ba28773e6bc686cb1 (diff)
downloadpcsxr-5305a7ec798d466678bca82ac3f3a2318cee6668.tar.gz
Fixing something I goofed on last commit.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@80254 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFXVideo/macsrc/PluginConfigController.m')
-rw-r--r--macosx/plugins/DFXVideo/macsrc/PluginConfigController.m7
1 files changed, 5 insertions, 2 deletions
diff --git a/macosx/plugins/DFXVideo/macsrc/PluginConfigController.m b/macosx/plugins/DFXVideo/macsrc/PluginConfigController.m
index d930b09d..29ea49e7 100644
--- a/macosx/plugins/DFXVideo/macsrc/PluginConfigController.m
+++ b/macosx/plugins/DFXVideo/macsrc/PluginConfigController.m
@@ -170,8 +170,11 @@ void ReadConfig(void)
// additional checks
if(!iColDepth) iColDepth=32;
- if(iUseFixes){ dwActFixes=dwCfgFixes;
- else dwActFixes=0;
+ if(iUseFixes) {
+ dwActFixes=dwCfgFixes;
+ } else {
+ dwActFixes=0;
+ }
SetFixes();
if(iFrameLimit==2) SetAutoFrameCap();