From 48b640c8bbdfa7b7a98875e1d47fbbb47e285390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Sun, 19 Jul 2026 23:46:56 +0200 Subject: GameFile: Disallow mods from being converted --- Source/Core/UICommon/GameFile.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Source/Core') diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp index 4acab314d1..bc623a8410 100644 --- a/Source/Core/UICommon/GameFile.cpp +++ b/Source/Core/UICommon/GameFile.cpp @@ -842,7 +842,8 @@ std::string GameFile::GetFileFormatName() const bool GameFile::ShouldAllowConversion() const { - return DiscIO::IsDisc(m_platform) && m_volume_size_type == DiscIO::DataSizeType::Accurate; + return DiscIO::IsDisc(m_platform) && m_volume_size_type == DiscIO::DataSizeType::Accurate && + !IsModDescriptor(); } bool GameFile::IsModDescriptor() const -- cgit v1.2.3