summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHercules.ws <Hercules@efficiently.awesome>2016-02-23 04:11:47 +0100
committerHerculesWSAPI <Hercules@efficiently.awesome>2016-02-23 04:11:47 +0100
commit6e8f5ea5285dd1a7bbca1e7676fcec209042a366 (patch)
tree8328e61516f0887ec25b92ed4ab3899f9ed3eec1 /src
parent53996663c46f662157beb7c9af7f904a5c5bb01e (diff)
downloadhercules-6e8f5ea5285dd1a7bbca1e7676fcec209042a366.tar.gz
hercules-6e8f5ea5285dd1a7bbca1e7676fcec209042a366.tar.bz2
hercules-6e8f5ea5285dd1a7bbca1e7676fcec209042a366.tar.xz
hercules-6e8f5ea5285dd1a7bbca1e7676fcec209042a366.zip
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/HPMHooking/HPMHooking_map.Hooks.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc
index fb761919b..fe47e76f0 100644
--- a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc
+++ b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc
@@ -35136,10 +35136,10 @@ const char* HP_itemdb_typename(int type) {
}
return retVal___;
}
-void HP_itemdb_jobmask2mapid(uint64 *bclass, int64 jobmask) {
+void HP_itemdb_jobmask2mapid(uint64 *bclass, uint64 jobmask) {
int hIndex = 0;
if( HPMHooks.count.HP_itemdb_jobmask2mapid_pre ) {
- void (*preHookFunc) (uint64 *bclass, int64 *jobmask);
+ void (*preHookFunc) (uint64 *bclass, uint64 *jobmask);
*HPMforce_return = false;
for(hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_jobmask2mapid_pre; hIndex++ ) {
preHookFunc = HPMHooks.list.HP_itemdb_jobmask2mapid_pre[hIndex].func;
@@ -35154,7 +35154,7 @@ void HP_itemdb_jobmask2mapid(uint64 *bclass, int64 jobmask) {
HPMHooks.source.itemdb.jobmask2mapid(bclass, jobmask);
}
if( HPMHooks.count.HP_itemdb_jobmask2mapid_post ) {
- void (*postHookFunc) (uint64 *bclass, int64 *jobmask);
+ void (*postHookFunc) (uint64 *bclass, uint64 *jobmask);
for(hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_jobmask2mapid_post; hIndex++ ) {
postHookFunc = HPMHooks.list.HP_itemdb_jobmask2mapid_post[hIndex].func;
postHookFunc(bclass, &jobmask);