summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/src/BootManager.cpp
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2008-07-21 01:27:13 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2008-07-21 01:27:13 +0000
commitc33cf08a2f059069c08fc02bc41fa57a2bea942f (patch)
tree2115da671c23acdd769f5220102ddac28fba1dbc /Source/Core/DolphinWX/src/BootManager.cpp
parent36f8b9751a5de8548e6ed1f0d62035dd5f54a761 (diff)
Linux: Fixes a few things, Should Compile in Linux. Ran Crazy Taxi horribly
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@38 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/src/BootManager.cpp')
-rw-r--r--Source/Core/DolphinWX/src/BootManager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/src/BootManager.cpp b/Source/Core/DolphinWX/src/BootManager.cpp
index 201c52094e..60a4f435a3 100644
--- a/Source/Core/DolphinWX/src/BootManager.cpp
+++ b/Source/Core/DolphinWX/src/BootManager.cpp
@@ -56,7 +56,9 @@ bool BootCore(const std::string& _rFilename)
// StartUp.bUseDualCore = false;
StartUp.bUseDynarec = true;
}
-
+ #ifndef _WIN32
+ StartUp.bUseDynarec = false;//Never use Dynarec in Linux, crashes
+ #endif
StartUp.m_BootType = SCoreStartupParameter::BOOT_ISO;
StartUp.m_strFilename = _rFilename;
StartUp.bHLEBios = true;