From 8a06c0fdc74b4b9e159d1d18a67ae66e36cbf8fe Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Mon, 25 Aug 2008 08:51:08 +0000 Subject: [PATCH] Added call to DetectCPU() which is present in "Main.cpp" but was lacking in "MainNoGUI.cpp". git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@309 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/src/MainNoGUI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinWX/src/MainNoGUI.cpp b/Source/Core/DolphinWX/src/MainNoGUI.cpp index 76b2341c79..e4b7263be0 100644 --- a/Source/Core/DolphinWX/src/MainNoGUI.cpp +++ b/Source/Core/DolphinWX/src/MainNoGUI.cpp @@ -8,6 +8,7 @@ #include "Globals.h" #include "Common.h" #include "ISOFile.h" +#include "CPUDetect.h" #include "BootManager.h" void* g_pCodeWindow = NULL; @@ -69,6 +70,7 @@ int main(int argc, char* argv[]) std::string temp; temp.insert(0, argv[1]); //Need to convert to C++ style string first + DetectCPU(); BootManager::BootCore(temp); usleep(2000 * 1000 * 1000); // while (!getch()) {