hedgewars/uAI.pas
branchsdl2transition
changeset 11367 a91c4c4fd85c
parent 11362 ed5a6478e710
child 11475 1d478892cf1c
equal deleted inserted replaced
11366:f1b5f1dc61a3 11367:a91c4c4fd85c
   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, 'think', 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;