Changeset 617 for trunk/LocalPlayer
- Timestamp:
- Sep 15, 2024, 1:31:30 PM (2 months ago)
- Location:
- trunk/LocalPlayer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/CityScreen.pas
r613 r617 1188 1188 with MainScreen.MessgExDlg do 1189 1189 begin 1190 { MessgText:=Phrases.Lookup('OUTOFCONTROL'); 1191 if C.Project and cpImp=0 then 1192 MessgText:=Format(MessgText,[Tribe[cOwner].ModelName[C.Project and cpIndex]]) 1193 else MessgText:=Format(MessgText,[Phrases.Lookup('IMPROVEMENTS',C.Project and cpIndex)]); } 1190 { MessgText := Phrases.Lookup('OUTOFCONTROL'); 1191 if C.Project and cpImp = 0 then 1192 MessgText := Format(MessgText, [Tribe[cOwner].ModelName[C.Project and cpIndex]]) 1193 else MessgText := Format(MessgText, [Phrases.Lookup('IMPROVEMENTS', 1194 C.Project and cpIndex)]); 1195 } 1194 1196 MessgText := Phrases.Lookup('NOCHANGEINANARCHY'); 1195 1197 Kind := mkOk; … … 1201 1203 begin 1202 1204 ProdHint := False; 1203 SmartUpdateContent 1205 SmartUpdateContent; 1204 1206 end; 1205 1207 ChooseProject; -
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.