Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 18, 2007, 5:51:47 PM (16 years ago)
Author:
scheusso
Message:

gamestatehandling, error correction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/ClientInformation.cc

    r514 r620  
    190190ClientInformation *ClientInformation::findClient(int clientID, bool look_backwards){
    191191  ClientInformation *temp = this;
     192  if (temp->head)
     193    temp=temp->next();
    192194  while(temp!=0 && temp->getID()!=clientID){
    193     if (temp->head)
    194       continue;
    195195    temp = temp->next();
    196196  }
Note: See TracChangeset for help on using the changeset viewer.