mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
fixed compile,
fixed crash, added panicalert` git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2017 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
bc6bbafb95
commit
356db07cbf
3 changed files with 52 additions and 50 deletions
|
@ -228,10 +228,12 @@ void ConfigDialog::CreateGUIControls()
|
|||
wxStaticBoxSizer * sbRealRecord = new wxStaticBoxSizer(wxVERTICAL, m_PageReal, wxT("Record movements"));
|
||||
|
||||
wxArrayString StrHotKey;
|
||||
for(int i = 0; i < 10; i++) StrHotKey.Add(wxString::Format("Shift + %i", i));
|
||||
for(int i = 0; i < 10; i++)
|
||||
StrHotKey.Add(wxString::Format(wxT("Shift + %i"), i));
|
||||
|
||||
wxArrayString StrPlayBackSpeed;
|
||||
for(int i = 1; i < 8; i++) StrPlayBackSpeed.Add(wxString::Format("%i", i*5));
|
||||
for(int i = 1; i < 8; i++)
|
||||
StrPlayBackSpeed.Add(wxString::Format(wxT("%i"), i*5));
|
||||
|
||||
wxBoxSizer * sRealRecord[RECORDING_ROWS];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue