From b78e5a7b36d253b879f3688f044dc51035d6d5c1 Mon Sep 17 00:00:00 2001 From: digant73 Date: Sat, 4 Apr 2026 18:30:19 +0200 Subject: [PATCH] added missing break in switch --- rpcs3/Loader/ISO.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpcs3/Loader/ISO.cpp b/rpcs3/Loader/ISO.cpp index c6b9efd7cb..041bfdeac9 100644 --- a/rpcs3/Loader/ISO.cpp +++ b/rpcs3/Loader/ISO.cpp @@ -283,12 +283,16 @@ bool iso_file_decryption::init(const std::string& path) { case iso_encryption_type::ENC_TYPE_REDUMP: sys_log.warning("init(): Set 'enc type': REDUMP, 'reg count': %u: %s", m_region_info.size(), path); + break; case iso_encryption_type::ENC_TYPE_3K3Y_ENC: sys_log.warning("init(): Set 'enc type': 3K3Y_ENC, 'reg count': %u: %s", m_region_info.size(), path); + break; case iso_encryption_type::ENC_TYPE_3K3Y_DEC: sys_log.warning("init(): Set 'enc type': 3K3Y_DEC, 'reg count': %u: %s", m_region_info.size(), path); + break; default: // If encryption type was not set for any reason sys_log.warning("init(): Set 'enc type': NONE, 'reg count': %u: %s", m_region_info.size(), path); + break; } return true;