diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-07-10 23:40:10 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-07-10 23:40:13 -0400 |
| commit | 9c245655fbb1deea183d47a53dbd6ecaab3bcb4a (patch) | |
| tree | 32395de4e4dd67e4de06b284bb7a514ec4deee8f /Source | |
| parent | d4337eebdeb999df380394cdd20d054f5e9fe375 (diff) | |
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.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/VideoCommon/Statistics.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Statistics.h b/Source/Core/VideoCommon/Statistics.h index e6fa72616a..2012296645 100644 --- a/Source/Core/VideoCommon/Statistics.h +++ b/Source/Core/VideoCommon/Statistics.h @@ -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 |
