From 4f7c8a77f6cc2189423626336bf8f86f85a6632c Mon Sep 17 00:00:00 2001 From: TheTechnician27 Date: Sat, 4 Jan 2025 16:03:44 -0600 Subject: [PATCH] Tools: Fix typo in compression tool --- bin/utils/bulk_compression.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/utils/bulk_compression.py b/bin/utils/bulk_compression.py index 212aa56814..e7e4f10c8c 100755 --- a/bin/utils/bulk_compression.py +++ b/bin/utils/bulk_compression.py @@ -169,7 +169,9 @@ def checkDuplicates(source_files, target_extensions, crash_protection_type=0): print("║") print("║ You may choose to OVERWRITE or SKIP all of these.") if (crash_protection_type == 2): - print("║ NOTE: chdman cannot overwrite .cso files. These will be skipped regardless.") + # chdman CLI just crashes trying to overwrite a .iso file + print("║ NOTE: chdman cannot overwrite .iso files, which are used as an intermediate format.") + print("║ These will be skipped regardless.") choice = input("║ Press 'O' to overwrite or 'S' to skip and press ENTER: ").lower() if (choice in dupe_options):