mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
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
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user