Cast size_t to unsigned long for printing.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6864 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
4a7d3ee1c8
commit
4f5211cc39
|
@ -240,7 +240,8 @@ void ControlDialog::UpdateGUI()
|
||||||
textctrl->SetValue(WXSTR_FROM_STR(control_reference->expression));
|
textctrl->SetValue(WXSTR_FROM_STR(control_reference->expression));
|
||||||
|
|
||||||
// updates the "bound controls:" label
|
// updates the "bound controls:" label
|
||||||
m_bound_label->SetLabel(wxString::Format(_("Bound Controls: %u"), control_reference->BoundCount()));
|
m_bound_label->SetLabel(wxString::Format(_("Bound Controls: %lu"),
|
||||||
|
(unsigned long)control_reference->BoundCount()));
|
||||||
};
|
};
|
||||||
|
|
||||||
void GamepadPage::UpdateGUI()
|
void GamepadPage::UpdateGUI()
|
||||||
|
|
Loading…
Reference in New Issue