summaryrefslogtreecommitdiff
path: root/macosx/ConfigurationController.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-10 21:00:20 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-10 21:00:20 +0000
commit3720dc59ca7c9bb98e952ff9c3cd8d88f03b9f93 (patch)
tree0eb319cbcabf130ae00e359c6708844ae5ad8f7a /macosx/ConfigurationController.m
parent7c6a7978c020b739e755c2bed56f91c5b7adf509 (diff)
downloadpcsxr-3720dc59ca7c9bb98e952ff9c3cd8d88f03b9f93.tar.gz
Disable the dynarec core on OS X i386. It will still run in 64-bit mode.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82185 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/ConfigurationController.m')
-rwxr-xr-xmacosx/ConfigurationController.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/ConfigurationController.m b/macosx/ConfigurationController.m
index 35c812b5..4490db87 100755
--- a/macosx/ConfigurationController.m
+++ b/macosx/ConfigurationController.m
@@ -185,6 +185,12 @@ NSString *memChangeNotifier = @"PcsxrMemoryCardDidChangeNotifier";
[usesHleCell setState:NSOnState];
[usesHleCell setEnabled:NO];
}
+
+#ifdef __i386__
+ //i386 on OS X doesn't like the dynarec core
+ [usesDynarecCell setState:NSOffState];
+ [usesDynarecCell setEnabled:NO];
+#endif
// setup labels
[mcd1Label setTitleWithMnemonic:[[NSFileManager defaultManager] stringWithFileSystemRepresentation:Config.Mcd1 length:strlen(Config.Mcd1)]];