diff -r 2eb09b27fbba -r e202d58236b1 hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Thu May 03 21:04:55 2018 +0200 +++ b/hedgewars/uWorld.pas Thu May 03 21:40:13 2018 +0200 @@ -32,7 +32,7 @@ procedure DrawWorldStereo(Lag: LongInt; RM: TRenderMode); procedure ShowMission(caption, subcaption, text: ansistring; icon, time : LongInt); procedure HideMission; -procedure SetAmmoTexts(ammoType: TAmmoType; name: ansistring; caption: ansistring; description: ansistring); +procedure SetAmmoTexts(ammoType: TAmmoType; name: ansistring; caption: ansistring; description: ansistring; autoLabels: boolean); procedure ShakeCamera(amount: LongInt); procedure InitCameraBorders; procedure InitTouchInterface; @@ -1972,7 +1972,7 @@ missionTimer:= 0; end; -procedure SetAmmoTexts(ammoType: TAmmoType; name: ansistring; caption: ansistring; description: ansistring); +procedure SetAmmoTexts(ammoType: TAmmoType; name: ansistring; caption: ansistring; description: ansistring; autoLabels: boolean); var ammoStrId: TAmmoStrId; ammoStr: ansistring; @@ -1997,6 +1997,7 @@ trluaammoc[ammoStrId] := caption; trluaammod[ammoStrId] := description; + trluaammoe[ammoStrId] := autoLabels; end; procedure ShakeCamera(amount: LongInt);