Removes a few compiler warnings and fix the bitmap for the sticks being cut off on the right

This commit is contained in:
Braden 2012-11-04 15:49:52 -06:00
parent 793e547e15
commit 3429db1115
3 changed files with 4 additions and 5 deletions

View File

@ -951,7 +951,7 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
else
{
unsigned int i = NUM_HOTKEYS;
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain || g_TASInputDlg->HasFocus())
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain || g_TASInputDlg->TASInputDlgHasFocus())
{
for (i = 0; i < NUM_HOTKEYS; i++)
{

View File

@ -682,7 +682,7 @@ void TASInputDlg::OnCloseWindow(wxCloseEvent& event)
}
}
bool TASInputDlg::HasFocus()
bool TASInputDlg::TASInputDlgHasFocus()
{
//allows numbers to be used as hotkeys
if(TextBoxHasFocus())
@ -753,7 +753,6 @@ void TASInputDlg::OnMouseUpR(wxMouseEvent& event)
return;
}
wxPoint ptM(event.GetPosition());
*x = 128;
*y = 128;
@ -1027,7 +1026,7 @@ wxBitmap TASInputDlg::CreateStickBitmap(int x, int y)
y = y/2;
wxMemoryDC memDC;
wxBitmap bitmap(127, 127);
wxBitmap bitmap(129, 129);
memDC.SelectObject(bitmap);
memDC.SetBackground(*wxLIGHT_GREY_BRUSH);
memDC.Clear();

View File

@ -46,7 +46,7 @@ class TASInputDlg : public wxDialog
void ButtonTurbo();
void GetKeyBoardInput(SPADStatus *PadStatus);
bool TextBoxHasFocus();
bool HasFocus();
bool TASInputDlgHasFocus();
wxBitmap CreateStickBitmap(int x, int y);