Merge pull request #8058 from jordan-woyak/kill-sign-macro

InputCommon: Remove unused "sign" macro.
This commit is contained in:
JosJuice 2019-04-30 07:08:30 +02:00 committed by GitHub
commit c0aacdf719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")};