From 5cf828c7b98ad89e9c027279711bf0cd6447c249 Mon Sep 17 00:00:00 2001 From: nakeee Date: Wed, 18 Feb 2009 00:08:40 +0000 Subject: [PATCH] Compile fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2302 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/MainNoGUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/MainNoGUI.cpp b/Source/Core/DolphinWX/Src/MainNoGUI.cpp index f04a7e04ab..892fbfd9bf 100644 --- a/Source/Core/DolphinWX/Src/MainNoGUI.cpp +++ b/Source/Core/DolphinWX/Src/MainNoGUI.cpp @@ -200,7 +200,7 @@ int main(int argc, char* argv[]) cpu_info.Detect(); CPluginManager::GetInstance().ScanForPlugins(); BootManager::BootCore(bootFile); - while (PowerPC::state != PowerPC::CPU_POWERDOWN) + while (PowerPC::GetState() != PowerPC::CPU_POWERDOWN) { updateMainFrameEvent.Wait(); }