VideoCommon/Statistics: Remove unused DECSTAT macro

This isn't used anywhere, so it can be removed. This also potentially
fixes an underlying compilation error waiting to happen, given DECSTAT
could have potentially been used, someone disables statistics (for
whatever reason), then gets a compilation error due to the #else case
not containing an empty definition of DECSTAT.
This commit is contained in:
Lioncash 2019-07-10 23:40:10 -04:00
parent d4337eebde
commit 9c245655fb
1 changed files with 0 additions and 1 deletions

View File

@ -73,7 +73,6 @@ extern Statistics g_stats;
#ifdef STATISTICS
#define INCSTAT(a) (a)++;
#define DECSTAT(a) (a)--;
#define ADDSTAT(a, b) (a) += (b);
#define SETSTAT(a, x) (a) = (int)(x);
#else