summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2013-04-25 01:41:45 +1200
committerMatthew Parlane <parlane@gmail.com>2013-04-25 01:41:45 +1200
commitc3dbbe011d4d9e06d6b4badc6e42e830b35fabd2 (patch)
treebb57013c56f8e4336d3a81cb28608f663f678fe8 /Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp
parente98069b647029417abf6b26d7bd30e0c3ea77863 (diff)
parent62ebfa0a78f2cbb8d40d2ae974ee9d404ddf6721 (diff)
Merge branch 'master' into wii-network
Diffstat (limited to 'Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp b/Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp
index 4a7476f3ed..ba1219b2ee 100644
--- a/Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp
+++ b/Source/Core/VideoCommon/Src/VertexLoader_Normal.cpp
@@ -40,7 +40,9 @@ __forceinline float FracAdjust(T val)
template <>
__forceinline float FracAdjust(float val)
-{ return val; }
+{
+ return val;
+}
template <typename T, int N>
__forceinline void ReadIndirect(const T* data)
@@ -187,5 +189,5 @@ TPipelineFunction VertexLoader_Normal::GetFunction(unsigned int _type,
unsigned int _format, unsigned int _elements, unsigned int _index3)
{
TPipelineFunction pFunc = m_Table[_type][_index3][_elements][_format].function;
- return pFunc;
+ return pFunc;
}