Changeset 522 for trunk/CityProcessing.pas
- Timestamp:
- Jan 7, 2024, 10:24:51 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CityProcessing.pas
r447 r522 665 665 dy := V21 shr 2 - 3; 666 666 dx := V21 and 3 shl 1 - 3 + (dy + 3) and 1; 667 Dist := abs(dx) + abs(dy) + abs(abs(dx) - abs(dy)) shr 1;667 Dist := Abs(dx) + Abs(dy) + Abs(Abs(dx) - Abs(dy)) shr 1; 668 668 if (Resources > Best) or (Resources = Best) and (Dist < BestDist) 669 669 then
Note:
See TracChangeset
for help on using the changeset viewer.