From f65b18f558da2cb27064b4cd32c07f17b773e0e1 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Tue, 21 Jul 2015 18:26:49 +0100 Subject: [PATCH] Keyup events --- addons/spectator/functions/fnc_handleInterface.sqf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/spectator/functions/fnc_handleInterface.sqf b/addons/spectator/functions/fnc_handleInterface.sqf index 85078735b7..3f198f47d5 100644 --- a/addons/spectator/functions/fnc_handleInterface.sqf +++ b/addons/spectator/functions/fnc_handleInterface.sqf @@ -220,25 +220,25 @@ switch (toLower _mode) do { switch (_dik) do { case 16: { // Q - GVAR(camBoom) set [0,false]; + GVAR(camBoom) = 0; }; case 17: { // W - GVAR(camDolly) set [0,false]; + GVAR(camDolly) set [0, 0]; }; case 29: { // Ctrl GVAR(ctrlKey) = false; }; case 30: { // A - GVAR(camDolly) set [2,false]; + GVAR(camDolly) set [1, 0]; }; case 31: { // S - GVAR(camDolly) set [1,false]; + GVAR(camDolly) set [0, 0]; }; case 32: { // D - GVAR(camDolly) set [3,false]; + GVAR(camDolly) set [1, 0]; }; case 44: { // Z - GVAR(camBoom) set [1,false]; + GVAR(camBoom) = 0; }; };