mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 09:39:46 -06:00
GUI: Made the symbols menu talk more
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4181 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -629,7 +629,7 @@ void CFrame::DoStop()
|
||||
{
|
||||
// Ask for confirmation in case the user accidently clicked Stop / Escape
|
||||
if(SConfig::GetInstance().m_LocalCoreStartupParameter.bConfirmStop)
|
||||
if(!AskYesNo("Are you sure you want to stop the current emulation?", "Confirm", wxYES_NO))
|
||||
if(!AskYesNo("Do want to stop the current emulation?", "Confirm", wxYES_NO))
|
||||
return;
|
||||
|
||||
// TODO: Show the author/description dialog here
|
||||
|
@ -518,7 +518,10 @@ void Host_UpdateStatusBar(const char* _pText, int Field)
|
||||
event.SetInt(Field);
|
||||
// Post message
|
||||
// TODO : this has been said to cause hang (??) how is that even possible ? :d
|
||||
event.StopPropagation();
|
||||
wxPostEvent(main_frame, event);
|
||||
// Process the event before continue
|
||||
wxYieldIfNeeded();
|
||||
}
|
||||
|
||||
void Host_SetWiiMoteConnectionState(int _State)
|
||||
|
Reference in New Issue
Block a user