(svn r22121) -Fix: In case of high frame_freq one could get commands executed after a new network game was started

This commit is contained in:
rubidium 2011-02-20 20:55:21 +00:00
parent e9fe58d7bf
commit d594a219c6
1 changed files with 2 additions and 1 deletions

View File

@ -221,10 +221,11 @@ void NetworkExecuteLocalCommandQueue()
}
/**
* Free the local command queue.
* Free the local command queues.
*/
void NetworkFreeLocalCommandQueue()
{
_local_wait_queue.Free();
_local_execution_queue.Free();
}