hedgewars/uAI.pas
changeset 11383 d3b603323b2b
parent 11367 a91c4c4fd85c
child 11475 1d478892cf1c
equal deleted inserted replaced
11381:437a60995fe1 11383:d3b603323b2b
   528     end;
   528     end;
   529 
   529 
   530 FillBonuses(((Me^.State and gstAttacked) <> 0) and (not isInMultiShoot));
   530 FillBonuses(((Me^.State and gstAttacked) <> 0) and (not isInMultiShoot));
   531 
   531 
   532 SDL_LockMutex(ThreadLock);
   532 SDL_LockMutex(ThreadLock);
   533 ThinkThread:= SDL_CreateThread(@Think{$IFDEF SDL2}, 'think'{$ENDIF}, Me);
   533 ThinkThread:= SDL_CreateThread(@Think, PChar('think'), Me);
   534 SDL_UnlockMutex(ThreadLock);
   534 SDL_UnlockMutex(ThreadLock);
   535 end;
   535 end;
   536 
   536 
   537 {$IFDEF DEBUGAI}
   537 {$IFDEF DEBUGAI}
   538 var scoreShown: boolean = false;
   538 var scoreShown: boolean = false;