Output now shows params for overloaded functions

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402336
This commit is contained in:
Matt Woodrow 2008-07-03 06:52:28 +00:00
parent 3cc5bebfa9
commit 89a56ac3e1

View File

@ -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;
}