diff --git a/tools/Vtable scanner/main.cpp b/tools/Vtable scanner/main.cpp index 35b18470..693a459b 100644 --- a/tools/Vtable scanner/main.cpp +++ b/tools/Vtable scanner/main.cpp @@ -77,7 +77,15 @@ int main(int argc, char **argv) if (ret) { - printf("%s - Win: %i Linux : %i\n", argv[3], offsets.windows_offset, offsets.linux_offset); + if (params != NULL) + { + printf("%s%s - Win: %i Linux : %i\n", argv[3], params, offsets.windows_offset, offsets.linux_offset); + } + else + { + printf("%s - Win: %i Linux : %i\n", argv[3], offsets.windows_offset, offsets.linux_offset); + } + return 0; }