From b7739f5d8524220f7301af0b515445a7f4a92a32 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 14 Sep 2015 19:43:31 -0400 Subject: [PATCH] VideoCommon: Remove unnecessary enum typedef --- Source/Core/VideoCommon/VideoCommon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/VideoCommon.h b/Source/Core/VideoCommon/VideoCommon.h index de27145c4a..4234bbb8be 100644 --- a/Source/Core/VideoCommon/VideoCommon.h +++ b/Source/Core/VideoCommon/VideoCommon.h @@ -66,12 +66,12 @@ struct TargetRectangle : public MathUtil::Rectangle #define LOG_VTX() -typedef enum +enum API_TYPE { API_OPENGL = 1, API_D3D = 2, API_NONE = 3 -} API_TYPE; +}; inline u32 RGBA8ToRGBA6ToRGBA8(u32 src) {