mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
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;
|
||||
@ -361,9 +355,7 @@ void RemoveThreadsafeEvent(int event_type)
|
||||
while (ptr)
|
||||
{
|
||||
if (ptr->type == event_type)
|
||||
{
|
||||
if (event_type == 24)
|
||||
NOTICE_LOG(FILEMON, "REMOVE 24");
|
||||
{
|
||||
prev->next = ptr->next;
|
||||
FreeTsEvent(ptr);
|
||||
ptr = prev->next;
|
||||
|
Loading…
x
Reference in New Issue
Block a user