Updates to fix VC2K5 compile problem

This was SVN commit r1276.
This commit is contained in:
Calefaction
2004-10-24 00:48:54 +00:00
parent 06051e3628
commit 09ce67303e
2 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ CProgramManager::~CProgramManager()
CVertexProgram *CProgramManager::FindVertexProgram(const char *file)
{
CVertexProgram *prog = NULL;
std::hash_map<std::string, CVertexProgram *>::iterator iter;
pp_map::iterator iter;
if((iter = m_VertexProgs.find(std::string(file))) != m_VertexProgs.end())
return (CVertexProgram *)(*iter).second;