mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Update several of the translations.
Update pot file to reflect recent changes in strings in the code. Make the Host_GetKeyState routine thread safe on linux. Clean up config main, and migrate the plugin selection to the display tab. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6994 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -349,6 +349,7 @@ CFrame::CFrame(wxFrame* parent,
|
||||
|
||||
#ifdef __WXGTK__
|
||||
panic_event.Init();
|
||||
keystate_event.Init();
|
||||
#endif
|
||||
|
||||
if (ShowLogWindow) SConfig::GetInstance().m_InterfaceLogWindow = true;
|
||||
@ -492,6 +493,7 @@ CFrame::~CFrame()
|
||||
|
||||
#ifdef __WXGTK__
|
||||
panic_event.Shutdown();
|
||||
keystate_event.Shutdown();
|
||||
#endif
|
||||
|
||||
delete m_Mgr;
|
||||
@ -662,6 +664,10 @@ void CFrame::OnHostMessage(wxCommandEvent& event)
|
||||
_("Warning"), event.GetInt() ? wxYES_NO : wxOK, this));
|
||||
panic_event.Set();
|
||||
break;
|
||||
case IDM_KEYSTATE:
|
||||
bKeyStateResult = wxGetKeyState(wxKeyCode(event.GetInt()));
|
||||
keystate_event.Set();
|
||||
break;
|
||||
#endif
|
||||
|
||||
case WM_USER_STOP:
|
||||
|
Reference in New Issue
Block a user