InputCommon: Remove unused "sign" macro.

This commit is contained in:
Jordan Woyak 2019-04-29 18:28:56 -05:00
parent 360f2b4a2f
commit 57a23cc4a0
1 changed files with 0 additions and 2 deletions

View File

@ -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")};