From 16f10a0533df777e8b554efd44d94414d8906412 Mon Sep 17 00:00:00 2001 From: jaefunk Date: Fri, 12 Mar 2021 10:27:33 +0900 Subject: [PATCH] remove debug log --- tools/assimp_cmd/Main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/assimp_cmd/Main.cpp b/tools/assimp_cmd/Main.cpp index 7cb90a7d7..1a8c38021 100644 --- a/tools/assimp_cmd/Main.cpp +++ b/tools/assimp_cmd/Main.cpp @@ -502,7 +502,6 @@ int ProcessStandardArguments( fill.verbose = true; } else if (!strncmp(params[i], "-rx=", 4) || !strncmp(params[i], "--rotation-x=", 13)) { - printf("%s", params[i]); std::string value = std::string(params[i] + (params[i][1] == '-' ? 13 : 4)); fill.rot.x = std::stof(value); }