Update netvars.cpp

This commit is contained in:
0TheSpy 2022-10-29 19:06:32 +03:00 committed by GitHub
parent 8dff5a61fb
commit 2f16f2139c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,15 +31,12 @@ int NetvarSys::GetOffset(const char* tableName, const char* propName)
{
int offset = this->GetProp(tableName, propName);
if (!offset)
{
#ifdef DEBUG
printf("%s not found!\n", propName);
#endif
{
printfdbg("%s not found!\n", propName);
return 0;
}
#ifdef DEBUG
printf("%s: 0x%02X\n", propName, offset);
#endif
printfdbg("%s: 0x%02X\n", propName, offset);
return offset;
}