From 019cc557a6ac72ea06e6391790d12b40355598a9 Mon Sep 17 00:00:00 2001 From: mfranz Date: Tue, 10 May 2005 10:58:28 +0000 Subject: [PATCH] currently "tailwheel-lock=true" means 'unlocked', which is confusing and inconsistent with brake properties (where 1.0 means (b)locked) ==> reverse tailwheel-lock meaning --- Input/Joysticks/Saitek/Cyborg-Evo.xml | 4 ++-- Input/Joysticks/Saitek/Cyborg-Gold-3d-USB.xml | 6 +++--- Input/Joysticks/ThrustMaster/Top-Gun-Afterburner.xml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Input/Joysticks/Saitek/Cyborg-Evo.xml b/Input/Joysticks/Saitek/Cyborg-Evo.xml index 6b326ae52..3a6f650cf 100644 --- a/Input/Joysticks/Saitek/Cyborg-Evo.xml +++ b/Input/Joysticks/Saitek/Cyborg-Evo.xml @@ -268,9 +268,9 @@ axis 5: (hat up-down) look u/d Trim Elevator Adj Propeller # twlock = !getprop("/controls/gear/tailwheel-lock"); setprop("/controls/gear/tailwheel-lock", twlock); if (twlock) { - gui.popupTip("Tail Wheel UNLOCKED"); - } else { gui.popupTip("Tail Wheel LOCKED"); + } else { + gui.popupTip("Tail Wheel UNLOCKED"); } } diff --git a/Input/Joysticks/Saitek/Cyborg-Gold-3d-USB.xml b/Input/Joysticks/Saitek/Cyborg-Gold-3d-USB.xml index 2d62381a5..7f30b82b2 100644 --- a/Input/Joysticks/Saitek/Cyborg-Gold-3d-USB.xml +++ b/Input/Joysticks/Saitek/Cyborg-Gold-3d-USB.xml @@ -62,7 +62,7 @@ is pressed, and 3 if both F3 and F4 are pressed. Note that you have to enclose nasal scripts in if they contain characters that interfere with the xml markup. This is the case -if you are, for exmaple, using < (lower than). Alternatively, you can 'escape' +if you are, for example, using < (lower than). Alternatively, you can 'escape' the character with "<". @@ -224,9 +224,9 @@ ________________________________________________________________________________ twlock = !getprop("/controls/gear/tailwheel-lock"); setprop("/controls/gear/tailwheel-lock", twlock); if (twlock) { - gui.popupTip("Tail Wheel UNLOCKED"); - } else { gui.popupTip("Tail Wheel LOCKED"); + } else { + gui.popupTip("Tail Wheel UNLOCKED"); } } elsif (mod == 2) { setprop("/sim/current-view/view-number", 0); diff --git a/Input/Joysticks/ThrustMaster/Top-Gun-Afterburner.xml b/Input/Joysticks/ThrustMaster/Top-Gun-Afterburner.xml index e92d70405..a28228882 100644 --- a/Input/Joysticks/ThrustMaster/Top-Gun-Afterburner.xml +++ b/Input/Joysticks/ThrustMaster/Top-Gun-Afterburner.xml @@ -294,9 +294,9 @@ ________________________________________________________________________________ twlock = !getprop("/controls/gear/tailwheel-lock"); setprop("/controls/gear/tailwheel-lock", twlock); if (twlock) { - gui.popupTip("Tail Wheel UNLOCKED"); - } else { gui.popupTip("Tail Wheel LOCKED"); + } else { + gui.popupTip("Tail Wheel UNLOCKED"); } } elsif (mod == 2) { setprop("/sim/current-view/view-number", 0);