From 30557cd77084c7451f1b0de24c855b945eb896dc Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 15 Oct 2017 12:39:38 +0200 Subject: [PATCH] Remove log which preduces tooo many messages --- patcher/ControllerPatcherHID.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patcher/ControllerPatcherHID.cpp b/patcher/ControllerPatcherHID.cpp index e1d888d..665efc7 100644 --- a/patcher/ControllerPatcherHID.cpp +++ b/patcher/ControllerPatcherHID.cpp @@ -562,7 +562,7 @@ std::vector ControllerPatcherHID::getHIDDataAll(){ s32 res; HID_Data * new_data = NULL; if((res = ControllerPatcherHID::getHIDData(cur_hidmask,pad,&new_data)) < 0){ // Checks if the pad is invalid. - DEBUG_FUNCTION_LINE("error: Error getting the HID data from HID(%s) CHAN(). Error %d\n",CPStringTools::byte_to_binary(cur_hidmask),pad,res); + //DEBUG_FUNCTION_LINE("error: Error getting the HID data from HID(%s) CHAN(). Error %d\n",CPStringTools::byte_to_binary(cur_hidmask),pad,res); continue; } if(new_data != NULL) data_list.push_back(new_data);