Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
louist103 committed Feb 7, 2024
1 parent 140ad57 commit 4efdba1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ZAPD/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,22 +399,18 @@ void Arg_CsFloatMode([[maybe_unused]] int& i, [[maybe_unused]] char* argv[])
i++;
if (std::strcmp(argv[i], "hex") == 0)
{
printf("HEX\n");
Globals::Instance->floatType = CsFloatType::HexOnly;
}
else if (std::strcmp(argv[i], "float") == 0)
{
printf("FLOAT\n");
Globals::Instance->floatType = CsFloatType::FloatOnly;
}
else if (std::strcmp(argv[i], "both") == 0)
{
printf("BOTH\n");
Globals::Instance->floatType = CsFloatType::HexAndFloat;
}
else
{
printf("ERR\n");
Globals::Instance->floatType = CsFloatType::FloatOnly;
HANDLE_WARNING(
WarningType::Always, "Invalid CS Float Type",
Expand Down

0 comments on commit 4efdba1

Please sign in to comment.