hedgewars/uAI.pas
branchqmlfrontend
changeset 11403 b894922d58cc
parent 11367 a91c4c4fd85c
child 11475 1d478892cf1c
equal deleted inserted replaced
11076:fcbdee9cdd74 11403:b894922d58cc
   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;