mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Cast size_t to unsigned long for printf to deal with (32-bit)
systems where size_t is typedef int. It's either this or use the C99 %zu but while we can probably safely assume C99 compilers, I am not at all sure that that's the case for stdio libraries and this solution is fairly low-impact. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6535 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -240,7 +240,8 @@ void CodeConfigPanel::DownloadCodes(wxCommandEvent&)
|
||||
|
||||
if (gcodes.size())
|
||||
{
|
||||
PanicAlert("Downloaded %lu codes.", gcodes.size());
|
||||
PanicAlert("Downloaded %lu codes.",
|
||||
(unsigned long)gcodes.size());
|
||||
|
||||
// append the codes to the code list
|
||||
std::vector<GeckoCode>::const_iterator
|
||||
|
Reference in New Issue
Block a user