DolphinTool: Remove redundant casts

This commit is contained in:
Dr. Dystopia 2025-04-23 20:14:48 +02:00
parent 89873d6238
commit 28313c3f7a

View file

@ -153,7 +153,7 @@ int ConvertCommand(const std::vector<std::string>& args)
} }
// --scrub // --scrub
const bool scrub = static_cast<bool>(options.get("scrub")); const bool scrub = options.get("scrub");
// Open the volume // Open the volume
std::unique_ptr<DiscIO::Volume> volume = DiscIO::CreateDisc(input_file_path); std::unique_ptr<DiscIO::Volume> volume = DiscIO::CreateDisc(input_file_path);