Changeset 504
- Timestamp:
- Dec 24, 2023, 12:57:24 PM (11 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Integrated.lpi
r482 r504 418 418 <CustomOptions Value="-dDEBUG 419 419 -dDPI"/> 420 <OtherDefines Count="2"> 421 <Define0 Value="DEBUG"/> 422 <Define1 Value="DPI"/> 423 </OtherDefines> 420 424 </Other> 421 425 </CompilerOptions> -
trunk/LocalPlayer/PVSB.pas
r468 r504 189 189 ScrollBar.OnChange := ScrollBarChanged; 190 190 ScrollBar.Parent := Parent; 191 ScrollBar.Width := 24; 191 192 end; 192 193 -
trunk/MiniMap.pas
r496 r504 149 149 if (MapRow[x] and fTerrain) in [fGrass, fPrairie, fTundra, fSwamp, 150 150 fForest, fHills] then 151 inc(nMapLandTiles);151 Inc(nMapLandTiles); 152 152 if MapRow[x] and (fPrefStartPos or fStartPos) <> 0 then 153 inc(nMapStartPositions);153 Inc(nMapStartPositions); 154 154 end 155 155 end; -
trunk/Packages/CevoComponents/DrawDlg.pas
r497 r504 240 240 r0 := CreateRectRgn(0, 0, ClientWidth, ClientHeight); 241 241 for i := 0 to ControlCount - 1 do 242 if not (Controls[i] is TArea) and Controls[i].Visible then242 if not (Controls[i] is TArea) and Controls[i].Visible then 243 243 begin 244 244 with Controls[i].BoundsRect do … … 320 320 end; 321 321 Start := Stop + 2; 322 inc(LinesCount);322 Inc(LinesCount); 323 323 end; 324 324 if Preview then
Note:
See TracChangeset
for help on using the changeset viewer.