From 57a23cc4a0d7a8e83f3a21c088a8436a6365c409 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 29 Apr 2019 18:28:56 -0500 Subject: [PATCH] InputCommon: Remove unused "sign" macro. --- Source/Core/InputCommon/ControllerEmu/ControllerEmu.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.h b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.h index 1cc9f5fd1e..e491192d18 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.h +++ b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.h @@ -17,8 +17,6 @@ class ControllerInterface; -#define sign(x) ((x) ? (x) < 0 ? -1 : 1 : 0) - const char* const named_directions[] = {_trans("Up"), _trans("Down"), _trans("Left"), _trans("Right")};