Demote some hook errors as they don't seem to succeed on win64 currently

This commit is contained in:
baldurk
2014-06-17 18:27:29 +01:00
parent 4822322509
commit cb67ae894a
+1 -1
View File
@@ -35,7 +35,7 @@
#define HookInit(function) \
bool CONCAT(function, _success) = CONCAT(function, _hook).Initialize(STRINGIZE(function), DLL_NAME, CONCAT(function, _hooked)); \
if(!CONCAT(function, _success)) RDCERR("Couldn't hook %s", STRINGIZE(function)); \
if(!CONCAT(function, _success)) RDCWARN("Couldn't hook %s", STRINGIZE(function)); \
success &= CONCAT(function, _success); \
GL.function = CONCAT(function, _hook)();