From db01c3c8415a16e62317ccc55231e4fd9c80ba14 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Sun, 31 Aug 2003 07:03:32 +0000 Subject: [PATCH] Fuel keys normalized to match crew and menu keys (#452), from Paxtez git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1158 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 2 ++ sc2/src/sc2code/outfit.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 48b28f3f8..e3f52d333 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,6 @@ Changes towards version 0.3: +- Left and Right directions disabled in fuel screen (bug #452), from + Paxtez - Syreen don't rejoice until victory truly is theirs (bug #451), from Nic - Guardian in Blazer mode being drained by DOGI will no longer diff --git a/sc2/src/sc2code/outfit.c b/sc2/src/sc2code/outfit.c index 4fa284932..4b96240ae 100644 --- a/sc2/src/sc2code/outfit.c +++ b/sc2/src/sc2code/outfit.c @@ -517,7 +517,7 @@ ChangeFuelQuantity () r.extent.height = 1; - if (CurrentMenuState.left || CurrentMenuState.up) + if (CurrentMenuState.up) { SetSemaphore (GraphicsSem); SetContext (SpaceContext); @@ -543,7 +543,7 @@ ChangeFuelQuantity () } ClearSemaphore (GraphicsSem); } - else if (CurrentMenuState.right || CurrentMenuState.down) + else if (CurrentMenuState.down) { SetSemaphore (GraphicsSem); SetContext (SpaceContext);