--- a/hedgewars/uVariables.pas Tue Feb 05 03:09:50 2019 +0100
+++ b/hedgewars/uVariables.pas Tue Feb 05 03:39:03 2019 +0100
@@ -179,6 +179,8 @@
cSeed : shortstring;
cIsSoundEnabled : boolean; // If the sound system is enabled
cVolumeDelta : LongInt;
+ cVolumeUpKey : boolean;
+ cVolumeDownKey : boolean;
cMuteToggle : boolean; // Mute toggle requested
cHasFocus : boolean;
cInactDelay : Longword;
@@ -2877,6 +2879,8 @@
cSeed := '';
cIsSoundEnabled := false;
cVolumeDelta := 0;
+ cVolumeUpKey := false;
+ cVolumeDownKey := false;
cMuteToggle := false;
cHasFocus := true;
cInactDelay := 100;