Compilation fixes to joystick sample after r70279.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70287 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-01-07 16:35:02 +00:00
parent 0dc45ad6b5
commit 22f772f8e3

View File

@@ -152,10 +152,10 @@ void MyCanvas::OnJoystickEvent(wxJoystickEvent& event)
dc.SetPen(*wxBLACK_PEN);
dc.DrawLine(xpos, ypos, pt.x, pt.y);
}
}
xpos = pt.x;
ypos = pt.y;
xpos = pt.x;
ypos = pt.y;
}
#if wxUSE_STATUSBAR
wxString buf;