From 619e333dcceee874248337e02ef4d682984c92e5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 19 Jun 2015 15:18:16 -0400 Subject: VertexLoader: Remove the LOADERDECL define. These functions aren't called from jitted code anymore so it isn't necessary. --- Source/Core/VideoCommon/VertexLoader_Normal.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/VertexLoader_Normal.cpp') diff --git a/Source/Core/VideoCommon/VertexLoader_Normal.cpp b/Source/Core/VideoCommon/VertexLoader_Normal.cpp index 939b902a9d..615a09c3a9 100644 --- a/Source/Core/VideoCommon/VertexLoader_Normal.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Normal.cpp @@ -56,7 +56,7 @@ __forceinline void ReadIndirect(const T* data) template struct Normal_Direct { - static void LOADERDECL function(VertexLoader* loader) + static void function(VertexLoader* loader) { auto const source = reinterpret_cast(DataGetPosition()); ReadIndirect(source); @@ -80,7 +80,7 @@ __forceinline void Normal_Index_Offset() template struct Normal_Index { - static void LOADERDECL function(VertexLoader* loader) + static void function(VertexLoader* loader) { Normal_Index_Offset(); } @@ -91,7 +91,7 @@ struct Normal_Index template struct Normal_Index_Indices3 { - static void LOADERDECL function(VertexLoader* loader) + static void function(VertexLoader* loader) { Normal_Index_Offset(); Normal_Index_Offset(); -- cgit v1.2.3