Sory, I've forgot to delete my logs in my last commit. :)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5987 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
688fda1a0e
commit
a122a4dc2c
|
@ -314,8 +314,6 @@ void RemoveEvent(int event_type)
|
|||
return;
|
||||
if (first->type == event_type)
|
||||
{
|
||||
if (event_type == 24)
|
||||
NOTICE_LOG(FILEMON, "REMOVE 24");
|
||||
Event *next = first->next;
|
||||
FreeEvent(first);
|
||||
first = next;
|
||||
|
@ -328,8 +326,6 @@ void RemoveEvent(int event_type)
|
|||
{
|
||||
if (ptr->type == event_type)
|
||||
{
|
||||
if (event_type == 24)
|
||||
NOTICE_LOG(FILEMON, "REMOVE 24");
|
||||
prev->next = ptr->next;
|
||||
FreeEvent(ptr);
|
||||
ptr = prev->next;
|
||||
|
@ -348,8 +344,6 @@ void RemoveThreadsafeEvent(int event_type)
|
|||
return;
|
||||
if (tsFirst->type == event_type)
|
||||
{
|
||||
if (event_type == 24)
|
||||
NOTICE_LOG(FILEMON, "REMOVE 24");
|
||||
Event *next = tsFirst->next;
|
||||
FreeTsEvent(tsFirst);
|
||||
tsFirst = next;
|
||||
|
@ -362,8 +356,6 @@ void RemoveThreadsafeEvent(int event_type)
|
|||
{
|
||||
if (ptr->type == event_type)
|
||||
{
|
||||
if (event_type == 24)
|
||||
NOTICE_LOG(FILEMON, "REMOVE 24");
|
||||
prev->next = ptr->next;
|
||||
FreeTsEvent(ptr);
|
||||
ptr = prev->next;
|
||||
|
|
Loading…
Reference in New Issue