Refactor async logging to synchronous; improve error handling consistency across modules.

This commit is contained in:
Kai Börnert
2026-04-13 17:03:47 +02:00
parent 964bdb0454
commit 8ce00c9d95
12 changed files with 104 additions and 121 deletions

View File

@@ -136,9 +136,7 @@ impl SavegameManager {
let slot = self.storage.scan()?;
match slot {
None => Ok(None),
Some(slot) => {
self.load_slot(slot.idx)
}
Some(slot) => self.load_slot(slot.idx),
}
}