Another typo.

This commit is contained in:
Unknown W. Brackets 2014-11-02 08:12:29 -08:00
parent 1c698e8991
commit 24ce3d11ed

View file

@ -904,7 +904,7 @@ std::string SavedataParam::GetSpaceText(u64 size)
{
if (size < 1024)
{
snprintf(text, sizeof(text), "ll%d %s", size, suffixes[i]);
snprintf(text, sizeof(text), "%lld %s", size, suffixes[i]);
return std::string(text);
}
size /= 1024;