Minor tweaks of ints to unsigned ints

This commit is contained in:
Robert Osfield
2006-05-16 21:20:36 +00:00
parent 690aeea7e4
commit e1c77dfe2a
3 changed files with 4 additions and 4 deletions

View File

@@ -924,7 +924,7 @@ Uniform* StateSet::getUniform(const std::string& name)
else return 0;
}
Uniform* StateSet::getOrCreateUniform(const std::string& name, Uniform::Type type, int numElements)
Uniform* StateSet::getOrCreateUniform(const std::string& name, Uniform::Type type, unsigned int numElements)
{
// for look for an appropriate uniform.
UniformList::iterator itr = _uniformList.find(name);