Changeset 337 for trunk/LocalPlayer/Term.pas
- Timestamp:
- Apr 1, 2021, 9:30:25 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Term.pas
r335 r337 1259 1259 begin 1260 1260 MiniMap.MapOptions := MapOptionChecked; 1261 Ma inMap.MapOptions := MapOptionChecked;1261 MapOptions := MapOptionChecked; 1262 1262 if ClientMode = cEditMap then 1263 Ma inMap.MapOptions := MainMap.MapOptions + [moEditMode];1263 MapOptions := MapOptions + [moEditMode]; 1264 1264 if mLocCodes.Checked then 1265 Ma inMap.MapOptions := MainMap.MapOptions + [moLocCodes];1265 MapOptions := MapOptions + [moLocCodes]; 1266 1266 end; 1267 1267 … … 3521 3521 Buffer := TBitmap.Create; 3522 3522 Buffer.PixelFormat := pf24bit; 3523 if 2 * lxmax > 3 * xSizeBig then 3524 Buffer.width := 2 * lxmax 3525 else 3526 Buffer.width := 3 * xSizeBig; 3527 if lymax > 3 * ySizeBig then 3528 Buffer.height := lymax 3529 else 3530 Buffer.height := 3 * ySizeBig; 3523 if 2 * lxmax > 3 * xSizeBig then Buffer.width := 2 * lxmax 3524 else Buffer.width := 3 * xSizeBig; 3525 if lymax > 3 * ySizeBig then Buffer.height := lymax 3526 else Buffer.height := 3 * ySizeBig; 3531 3527 Buffer.Canvas.Font.Assign(UniFont[ftSmall]); 3532 3528 for i := 0 to nPl - 1 do … … 5071 5067 // if MoveHintToLoc>=0 then 5072 5068 // ShowMoveHint(MoveHintToLoc, true); 5073 end 5069 end; 5074 5070 end 5075 5071 else if TurnComplete and not supervising then … … 6391 6387 begin 6392 6388 MainMap.pDebugMap := p; 6393 Ma inMap.MapOptions := MainMap.MapOptions - [moLocCodes];6389 MapOptions := MapOptions - [moLocCodes]; 6394 6390 mLocCodes.Checked := false; 6395 6391 MapValid := false;
Note:
See TracChangeset
for help on using the changeset viewer.