Rename Online→Multiplayer, Local→Single Player

This commit is contained in:
2026-06-01 01:22:07 +02:00
parent c8297d0df1
commit 569375bdfe
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ fn main() {
let first = seen.insert(slot.clone());
let label = if first { format!("Slot {label_num}") } else { String::new() };
let typ = if is_online { "Online" } else { "Local" };
let typ = if is_online { "Multiplayer" } else { "Single Player" };
let sz = if size < 1024 {
format!("{size} B")
} else if size < 1024 * 1024 {