From 2e74a4447a01bc80198f081c2273c4ad2a6a4026 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 20 Jun 2019 08:00:59 -0400 Subject: [PATCH] VideoCommon/Statistics: Remove unused setter macros for statistics Now that the floating point members are assigned in bulk, we can remove their setter macro. While we're at it, we can also remove the setter for unsigned int, given it's not used. --- Source/Core/VideoCommon/Statistics.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/VideoCommon/Statistics.h b/Source/Core/VideoCommon/Statistics.h index 38bc750085..4c7df6a300 100644 --- a/Source/Core/VideoCommon/Statistics.h +++ b/Source/Core/VideoCommon/Statistics.h @@ -76,8 +76,6 @@ extern Statistics stats; #define DECSTAT(a) (a)--; #define ADDSTAT(a, b) (a) += (b); #define SETSTAT(a, x) (a) = (int)(x); -#define SETSTAT_UINT(a, x) (a) = (u32)(x); -#define SETSTAT_FT(a, x) (a) = (float)(x); #else #define INCSTAT(a) ; #define ADDSTAT(a, b) ;