actually make chatprint work

This commit is contained in:
BenCat07 2018-02-25 12:35:21 +01:00 committed by GitHub
parent e9759831ac
commit 2e66e877e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,4 +20,5 @@ CHudElement *CHud::FindElement(const char *name)
"00 00 00 00 8B 04 98 8B 08 89 04 24 FF 51 24 8B 55 0C 89 04 24");
typedef CHudElement *(*FindElement)(CHud *, const char *);
((FindElement)(findel_sig))(this, name);
return ((FindElement)(findel_sig))(this, name);
}