Fixed incorrect return value causing messages to be printed twice (or messages that

should be ignored to be printed). This does not fix the 'read Chunk...' messages.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5209 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-04-18 12:35:45 +00:00
parent 59f82079fb
commit ef174c6ab6

View File

@ -81,7 +81,7 @@ bool EventHandler::OnEvent (const SEvent &event)
printf("Level %d: %s\n",
event.LogEvent.Level,event.LogEvent.Text);
}
return EVENT_BLOCK;
return true;
}