warning fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@738 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
14541f0f8a
commit
f83057262b
|
@ -93,14 +93,10 @@ SetTitle(wxT("Sound Debugging"));
|
||||||
|
|
||||||
wxStaticBoxSizer* sLeft;
|
wxStaticBoxSizer* sLeft;
|
||||||
|
|
||||||
wxListCtrl* m_MemcardList[2];
|
|
||||||
wxTimer* m_Timer;
|
|
||||||
|
|
||||||
|
|
||||||
// declarations
|
// declarations
|
||||||
wxCheckBox *m_Check[2];
|
wxCheckBox *m_Check[2];
|
||||||
wxRadioButton *m_Radio[6];
|
wxRadioButton *m_Radio[6];
|
||||||
wxPanel *m_Controller;
|
|
||||||
|
|
||||||
// checkboxes
|
// checkboxes
|
||||||
m_Check[0] = new wxCheckBox(this, IDC_CHECK0, wxT("Save to file"),
|
m_Check[0] = new wxCheckBox(this, IDC_CHECK0, wxT("Save to file"),
|
||||||
|
@ -190,4 +186,4 @@ void CDebugger::NotifyUpdate()
|
||||||
{
|
{
|
||||||
m_GPRListView->Update();
|
m_GPRListView->Update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,7 +135,7 @@ void CUCode_AX::MixAdd(short* _pBuffer, int _iSize)
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
ratioFactor = 32000.0f / (float)DSound::DSound_GetSampleRate();
|
ratioFactor = 32000.0f / (float)DSound::DSound_GetSampleRate();
|
||||||
#else
|
#else
|
||||||
float ratioFactor = 32000.0f / 44100.0f;
|
ratioFactor = 32000.0f / 44100.0f;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// write logging data to debugger
|
// write logging data to debugger
|
||||||
|
|
|
@ -35,9 +35,9 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
// List in progress
|
// List in progress
|
||||||
int m_numSteps;
|
u32 m_numSteps;
|
||||||
bool m_bListInProgress;
|
bool m_bListInProgress;
|
||||||
int m_step;
|
u32 m_step;
|
||||||
u8 m_Buffer[1024];
|
u8 m_Buffer[1024];
|
||||||
void ExecuteList();
|
void ExecuteList();
|
||||||
|
|
||||||
|
|
|
@ -35,9 +35,9 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
// List in progress
|
// List in progress
|
||||||
int m_numSteps;
|
u32 m_numSteps;
|
||||||
bool m_bListInProgress;
|
bool m_bListInProgress;
|
||||||
int m_step;
|
u32 m_step;
|
||||||
u8 m_Buffer[1024];
|
u8 m_Buffer[1024];
|
||||||
void ExecuteList();
|
void ExecuteList();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue