From 76ceb115980dcd63be53c4b43c334e6fe56b032e Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 22 Jan 2015 23:11:53 +0100 Subject: [PATCH] Fix minus key bug in the weaponslist --- qcsrc/menu/xonotic/weaponslist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/menu/xonotic/weaponslist.c b/qcsrc/menu/xonotic/weaponslist.c index 8e573b8c3..8a8e2205d 100644 --- a/qcsrc/menu/xonotic/weaponslist.c +++ b/qcsrc/menu/xonotic/weaponslist.c @@ -117,7 +117,7 @@ float XonoticWeaponsList_keyDown(entity me, float scan, float ascii, float shift WeaponsList_MoveUp_Click(NULL, me); return 1; } - else if(scan == 45) // - + else if(ascii == 45) // - { WeaponsList_MoveDown_Click(NULL, me); return 1; -- 2.39.2