mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-26 19:28:44 +00:00
VerifyTool: Add missing USE_RETRO_ACHIEVEMENTS ifdefs
This commit is contained in:
parent
6941bba6f4
commit
2b1001a706
1 changed files with 2 additions and 1 deletions
|
@ -133,8 +133,10 @@ int VerifyCommand(const std::vector<std::string>& args)
|
|||
hashes_to_calculate.md5 = true;
|
||||
else if (algorithm == "sha1")
|
||||
hashes_to_calculate.sha1 = true;
|
||||
#ifdef USE_RETRO_ACHIEVEMENTS
|
||||
else if (algorithm == "rchash")
|
||||
rc_hash_calculate = true;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (!hashes_to_calculate.crc32 && !hashes_to_calculate.md5 && !hashes_to_calculate.sha1 &&
|
||||
|
@ -171,7 +173,6 @@ int VerifyCommand(const std::vector<std::string>& args)
|
|||
}
|
||||
#endif
|
||||
|
||||
|
||||
// Print the report
|
||||
if (!algorithm_is_set)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue