mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
DolphinTool: Remove redundant casts
This commit is contained in:
parent
89873d6238
commit
28313c3f7a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue