makerom: misc

This commit is contained in:
applestash
2014-09-20 23:37:11 +10:00
parent 1723d4fc8f
commit 63852a6ed1
+3 -1
View File
@@ -235,7 +235,9 @@ void GetTitleSaveSize(cci_settings *set)
// Adjusting save size
if(set->romInfo.saveSize <= (u64)128*KB)
if(set->romInfo.saveSize == 0)
set->romInfo.saveSize == 0;
else if(set->romInfo.saveSize <= (u64)128*KB)
set->romInfo.saveSize = (u64)128*KB;
else if(set->romInfo.saveSize <= (u64)512*KB)
set->romInfo.saveSize = (u64)512*KB;