From 911755242d1b10d37432d670edd62e18a1133f06 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 29 May 2019 22:15:43 -0400 Subject: [PATCH] VideoCommon/VertexLoader_Normal: Remove E prefix from enums This is old formatting that used to be used prior to the coding style being introduced. --- Source/Core/VideoCommon/VertexLoader_Normal.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/VideoCommon/VertexLoader_Normal.h b/Source/Core/VideoCommon/VertexLoader_Normal.h index b194e3cb8d..bfc898298a 100644 --- a/Source/Core/VideoCommon/VertexLoader_Normal.h +++ b/Source/Core/VideoCommon/VertexLoader_Normal.h @@ -17,7 +17,7 @@ public: static TPipelineFunction GetFunction(u64 type, u32 format, u32 elements, u32 index3); private: - enum ENormalType + enum NormalType { NRM_NOT_PRESENT = 0, NRM_DIRECT = 1, @@ -26,7 +26,7 @@ private: NUM_NRM_TYPE }; - enum ENormalFormat + enum NormalFormat { FORMAT_UBYTE = 0, FORMAT_BYTE = 1, @@ -36,14 +36,14 @@ private: NUM_NRM_FORMAT }; - enum ENormalElements + enum NormalElements { NRM_NBT = 0, NRM_NBT3 = 1, NUM_NRM_ELEMENTS }; - enum ENormalIndices + enum NormalIndices { NRM_INDICES1 = 0, NRM_INDICES3 = 1,