mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix compilation errors with g++4.7
This commit is contained in:
@ -99,7 +99,7 @@ public:
|
|||||||
case MODE_MEASURE:
|
case MODE_MEASURE:
|
||||||
case MODE_VERIFY:
|
case MODE_VERIFY:
|
||||||
{
|
{
|
||||||
std::map<unsigned int, T>::iterator itr = x.begin();
|
typename std::map<unsigned int, T>::iterator itr = x.begin();
|
||||||
while (number > 0)
|
while (number > 0)
|
||||||
{
|
{
|
||||||
Do(itr->first);
|
Do(itr->first);
|
||||||
|
@ -41,11 +41,11 @@ class TASInputDlg : public wxDialog
|
|||||||
void OnMouseUpR(wxMouseEvent& event);
|
void OnMouseUpR(wxMouseEvent& event);
|
||||||
void ResetValues();
|
void ResetValues();
|
||||||
void GetValues(SPADStatus *PadStatus, int controllerID);
|
void GetValues(SPADStatus *PadStatus, int controllerID);
|
||||||
void TASInputDlg::SetTurbo(wxMouseEvent& event);
|
void SetTurbo(wxMouseEvent& event);
|
||||||
void TASInputDlg::SetTurboFalse(wxMouseEvent& event);
|
void SetTurboFalse(wxMouseEvent& event);
|
||||||
void TASInputDlg::ButtonTurbo();
|
void ButtonTurbo();
|
||||||
void TASInputDlg::GetKeyBoardInput(SPADStatus *PadStatus);
|
void GetKeyBoardInput(SPADStatus *PadStatus);
|
||||||
bool TASInputDlg::TextBoxHasFocus();
|
bool TextBoxHasFocus();
|
||||||
bool HasFocus();
|
bool HasFocus();
|
||||||
|
|
||||||
wxBitmap CreateStickBitmap(int x, int y);
|
wxBitmap CreateStickBitmap(int x, int y);
|
||||||
|
Reference in New Issue
Block a user