mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 12:35:06 +01:00
Not log every hook call anymore
This commit is contained in:
parent
8b0df7b6b8
commit
9442c5d62a
@ -60,7 +60,7 @@ void CallHookEx(wups_loader_hook_type_t hook_type, int32_t plugin_index_needed)
|
|||||||
for(int32_t j=0; j<plugin_data->number_used_hooks; j++) {
|
for(int32_t j=0; j<plugin_data->number_used_hooks; j++) {
|
||||||
replacement_data_hook_t * hook_data = &plugin_data->hooks[j];
|
replacement_data_hook_t * hook_data = &plugin_data->hooks[j];
|
||||||
if(hook_data->type == hook_type) {
|
if(hook_data->type == hook_type) {
|
||||||
DEBUG_FUNCTION_LINE("Calling hook of type %d for plugin %s\n",hook_data->type,plugin_data->plugin_name);
|
//DEBUG_FUNCTION_LINE("Calling hook of type %d for plugin %s\n",hook_data->type,plugin_data->plugin_name);
|
||||||
void * func_ptr = hook_data->func_pointer;
|
void * func_ptr = hook_data->func_pointer;
|
||||||
//TODO: Switch cases depending on arguments etc.
|
//TODO: Switch cases depending on arguments etc.
|
||||||
// Adding arguments!
|
// Adding arguments!
|
||||||
|
Loading…
Reference in New Issue
Block a user