From a75c37826b4198b8907a821e5750bcfeab8b8781 Mon Sep 17 00:00:00 2001 From: nodchip Date: Sat, 10 Apr 2010 01:39:33 +0000 Subject: [PATCH] VideoCommon: Fixed the bug that VideoSoftware does not initialize SSSE3/SSE4.1 codes. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5310 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoSoftware/Src/VertexLoader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/VertexLoader.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/VertexLoader.cpp index 98b0e99b10..f1119fac36 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/VertexLoader.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/VertexLoader.cpp @@ -46,6 +46,8 @@ VertexLoader::VertexLoader() : m_NumAttributeLoaders(0) { VertexLoader_Normal::Init(); + VertexLoader_Position::Init(); + VertexLoader_TextCoord::Init(); m_SetupUnit = new SetupUnit; }