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:
Soren Jorvang 2011-01-16 17:56:26 +00:00
parent 4a7d3ee1c8
commit 4f5211cc39
1 changed files with 2 additions and 1 deletions

View File

@ -240,7 +240,8 @@ void ControlDialog::UpdateGUI()
textctrl->SetValue(WXSTR_FROM_STR(control_reference->expression));
// 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()