From 9c245655fbb1deea183d47a53dbd6ecaab3bcb4a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 10 Jul 2019 23:40:10 -0400 Subject: [PATCH] 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. --- Source/Core/VideoCommon/Statistics.h | 1 - 1 file changed, 1 deletion(-) 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