Fix a couple of compiler warnings that have cropped up.
This commit is contained in:
parent
1f6b70bf87
commit
8b65775ee1
|
@ -239,7 +239,6 @@ void GamepadPage::UpdateGUI()
|
|||
std::vector<ControlButton*>::const_iterator i = (*g)->control_buttons.begin()
|
||||
, e = (*g)->control_buttons.end();
|
||||
for (; i!=e; ++i) {
|
||||
ControllerInterface::ControlReference *r = (*i)->control_reference;
|
||||
wxString expr = StrToWxStr((*i)->control_reference->expression);
|
||||
expr.Replace("&", "&&");
|
||||
(*i)->SetLabel(expr);
|
||||
|
|
|
@ -658,7 +658,7 @@ void Host_SetWiiMoteConnectionState(int _State)
|
|||
// Update field 1 or 2
|
||||
event.SetInt(1);
|
||||
|
||||
NOTICE_LOG(WIIMOTE, event.GetString().c_str());
|
||||
NOTICE_LOG(WIIMOTE, "%s", static_cast<const char*>(event.GetString().c_str()));
|
||||
|
||||
main_frame->GetEventHandler()->AddPendingEvent(event);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue