Changeset 617 for trunk/LocalPlayer/Term.pas
- Timestamp:
- Sep 15, 2024, 1:31:30 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Term.pas
r616 r617 7092 7092 ShortCut := KeyToShortCut(Key, Shift); 7093 7093 7094 if BFullScreen.Test(ShortCut) then begin 7095 FullScreen := not FullScreen; 7096 SetFullScreen(FullScreen); 7097 end; 7098 7094 7099 if GameMode = cMovie then begin 7095 7100 if BScienceStat.Test(ShortCut) then MenuClick_Check(StatPopup, mScienceStat) … … 7107 7112 else if BFillMap.Test(ShortCut) then mFillMap.Click 7108 7113 else if BHelp.Test(ShortCut) then mHelp.Click; 7109 (*if Shift = [ssCtrl] then7110 case Char(Key) of7111 'A':7112 begin // auto symmetry7113 Server($7F0,Me,0,nil^);7114 MapValid:=False;7115 PaintAll;7116 end;7117 'B':7118 begin // land mass7119 dy:=0;7120 for dx:=G.lx to G.lx*(G.ly-1)-1 do7121 if MyMap[dx] and fTerrain>=fGrass then Inc(dy);7122 dy:=dy7123 end;7124 end;7125 *)7126 7114 Exit; 7127 7115 end; 7128 7116 7129 7117 if BEndTurn.Test(ShortCut) then EndTurn 7130 else if BFullScreen.Test(ShortCut) then begin7131 FullScreen := not FullScreen;7132 SetFullScreen(FullScreen);7133 end7134 7118 else if BHelp.Test(ShortCut) then mHelp.Click 7135 7119 else if BUnitStat.Test(ShortCut) then MenuClick_Check(StatPopup, mUnitStat)
Note:
See TracChangeset
for help on using the changeset viewer.