summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/src/Main.cpp
diff options
context:
space:
mode:
authorfires.gc <fires.gc@gmail.com>2008-07-16 12:19:14 +0000
committerfires.gc <fires.gc@gmail.com>2008-07-16 12:19:14 +0000
commitcb5072c3e4cf66d33d30697984a9179534334b38 (patch)
tree7352aa0e6d6817e8245521ae3227b6bc160b9f3d /Source/Core/DolphinWX/src/Main.cpp
parent222d669d8b42254c0da4cc3ed4696cc18252ff7e (diff)
added additional information like FPS to the status bar
added menu option to activate dual core support git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@11 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/src/Main.cpp')
-rw-r--r--Source/Core/DolphinWX/src/Main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/src/Main.cpp b/Source/Core/DolphinWX/src/Main.cpp
index 45922f067b..a278f8f8f9 100644
--- a/Source/Core/DolphinWX/src/Main.cpp
+++ b/Source/Core/DolphinWX/src/Main.cpp
@@ -221,4 +221,10 @@ void Host_CreateDisplay()
void Host_CloseDisplay()
{}
+void Host_UpdateStatusBar(const char* _pText)
+{
+ wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATESTATUSBAR);
+ event.SetString(_pText);
+ wxPostEvent(main_frame, event);
+}