hedgewars/uVariables.pas
changeset 14681 bd43e703608b
parent 14679 4eaeba349179
child 14736 8563cc40fc1e
equal deleted inserted replaced
14680:d74517fdb34f 14681:bd43e703608b
   177     cScriptName     : shortstring;
   177     cScriptName     : shortstring;
   178     cScriptParam    : shortstring;
   178     cScriptParam    : shortstring;
   179     cSeed           : shortstring;
   179     cSeed           : shortstring;
   180     cIsSoundEnabled : boolean; // If the sound system is enabled
   180     cIsSoundEnabled : boolean; // If the sound system is enabled
   181     cVolumeDelta    : LongInt;
   181     cVolumeDelta    : LongInt;
       
   182     cVolumeUpKey    : boolean;
       
   183     cVolumeDownKey  : boolean;
   182     cMuteToggle     : boolean; // Mute toggle requested
   184     cMuteToggle     : boolean; // Mute toggle requested
   183     cHasFocus       : boolean;
   185     cHasFocus       : boolean;
   184     cInactDelay     : Longword;
   186     cInactDelay     : Longword;
   185 
   187 
   186     bBetweenTurns   : boolean;
   188     bBetweenTurns   : boolean;
  2875     fastScrolling   := false;
  2877     fastScrolling   := false;
  2876     autoCameraOn    := true;
  2878     autoCameraOn    := true;
  2877     cSeed           := '';
  2879     cSeed           := '';
  2878     cIsSoundEnabled := false;
  2880     cIsSoundEnabled := false;
  2879     cVolumeDelta    := 0;
  2881     cVolumeDelta    := 0;
       
  2882     cVolumeUpKey    := false;
       
  2883     cVolumeDownKey  := false;
  2880     cMuteToggle     := false;
  2884     cMuteToggle     := false;
  2881     cHasFocus       := true;
  2885     cHasFocus       := true;
  2882     cInactDelay     := 100;
  2886     cInactDelay     := 100;
  2883     ReadyTimeLeft   := 0;
  2887     ReadyTimeLeft   := 0;
  2884 
  2888