rename and invert the 'manual' arg to 'preview' in load_party()

This commit is contained in:
2025-03-14 13:45:07 -05:00
committed by Celtic Minstrel
parent 7c9b9ee255
commit 2053381ea9
3 changed files with 22 additions and 22 deletions

View File

@@ -2012,7 +2012,7 @@ class cFilePicker {
while(saves_loaded < parties_needed){
fs::path next_file = save_file_mtimes[saves_loaded].first;
cUniverse party_univ;
if(!load_party(next_file, save_files[saves_loaded], false)){
if(!load_party(next_file, save_files[saves_loaded], true)){
// Below, we check the load_failed flag to display when a party is corrupt
}
saves_loaded++;