diff options
| author | fires.gc <fires.gc@gmail.com> | 2008-07-16 12:19:14 +0000 |
|---|---|---|
| committer | fires.gc <fires.gc@gmail.com> | 2008-07-16 12:19:14 +0000 |
| commit | cb5072c3e4cf66d33d30697984a9179534334b38 (patch) | |
| tree | 7352aa0e6d6817e8245521ae3227b6bc160b9f3d /Source/Core/DolphinWX/src/Main.cpp | |
| parent | 222d669d8b42254c0da4cc3ed4696cc18252ff7e (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.cpp | 6 |
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);
+}
|
