Give file count in decimal rather than hex when exporting all wii saves.

This commit is contained in:
Rachel Bryk 2014-08-05 22:43:34 -04:00
parent 90d5e31731
commit 9bd28aa6d1
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);