We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d543378 + ed57069 commit ae1cd01Copy full SHA for ae1cd01
src/reverse/BasicTypes.cpp
@@ -79,7 +79,7 @@ std::string TweakDBID::AsString() const noexcept
79
std::string TweakDBID::ToString() const noexcept
80
{
81
const auto resolved = CET::Get().GetVM().GetTDBIDString(value, true);
82
- if (!resolved.empty())
+ if (resolved.empty())
83
return fmt::format("ToTweakDBID{{ hash = 0x{:08X}, length = {:d} }}", name_hash, name_length);
84
return fmt::format("ToTweakDBID{{ hash = 0x{:08X}, length = {:d} --[[ {} --]] }}", name_hash, name_length, resolved);
85
}
0 commit comments