From b1e27ddf3b389ddd9ab4cfc8903cbf85c0184a00 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/utils/bulk_compression.py b/bin/utils/bulk_compression.py index 212aa56814b1c..393ce1bd612e7 100755 --- a/bin/utils/bulk_compression.py +++ b/bin/utils/bulk_compression.py @@ -169,7 +169,8 @@ 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.") + 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):