Merge pull request #741 from RachelBryk/decimal-count

Give file count in decimal rather than hex when exporting all wii saves.
This commit is contained in:
Lioncash 2014-08-05 22:45:15 -04:00
commit 6eb032a1ae
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void CWiiSaveCrypted::ExportAllSaves()
}
}
}
SuccessAlertT("Found %x save files", (unsigned int) titles.size());
SuccessAlertT("Found %d save files", (unsigned int) titles.size());
for (const u64& title : titles)
{
CWiiSaveCrypted* exportSave = new CWiiSaveCrypted("", title);