Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
kbengine committed Aug 25, 2015
1 parent 7d363d3 commit 7dc2180
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ public static void processOutEvents()
Dbg.ERROR_MSG("Event::processOutEvents: event=" + eobj.info.funcname + "\n" + e.ToString());
}

doingEvents_out.RemoveFirst();
if(doingEvents_out.Count > 0)
doingEvents_out.RemoveFirst();
}
}

Expand Down Expand Up @@ -366,7 +367,8 @@ public static void processInEvents()
Dbg.ERROR_MSG("Event::processInEvents: event=" + eobj.info.funcname + "\n" + e.ToString());
}

doingEvents_in.RemoveFirst();
if(doingEvents_in.Count > 0)
doingEvents_in.RemoveFirst();
}
}

Expand Down

0 comments on commit 7dc2180

Please sign in to comment.