Changeset 144 for trunk/NoTerm.pas
- Timestamp:
- May 11, 2018, 11:57:25 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NoTerm.pas
r143 r144 234 234 begin // game ended, update statistics 235 235 for p := 1 to nPlOffered - 1 do 236 if bixView[p] >= 0then236 if Assigned(PlayersBrain[p]) then 237 237 if 1 shl p and G.RO[me].Alive = 0 then 238 238 inc(ExtStat[p]) // extinct … … 323 323 Canvas.Font.Assign(UniFont[ftSmall]); 324 324 for i := 1 to nPlOffered - 1 do 325 if bixView[i] >= 0then325 if Assigned(PlayersBrain[i]) then 326 326 begin 327 327 Frame(Canvas, xBrain[i] - 24, yBrain[i] - 8 - 16, xBrain[i] - 24 + 111, 328 328 yBrain[i] - 8 - 16 + 111, MainTexture.clBevelShade, 329 329 MainTexture.clBevelShade); 330 FrameImage(Canvas, Brains[bixView[i]].Picture, xBrain[i],330 FrameImage(Canvas, PlayersBrain[i].Picture, xBrain[i], 331 331 yBrain[i] - 16, 64, 64, 0, 0); 332 332 if 1 shl i and G.RO[me].Alive = 0 then
Note:
See TracChangeset
for help on using the changeset viewer.