improvements in slerp

thanks to Tully Foote:

http://code.google.com/p/bullet/issues/detail?id=140

minor warning fix in btHashMap.h
This commit is contained in:
erwin.coumans
2009-11-03 06:22:51 +00:00
parent 836234696d
commit 992c5eafa4
2 changed files with 12 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ struct btHashString
return( ret );
}
const bool equals(const btHashString& other) const
bool equals(const btHashString& other) const
{
return (m_string == other.m_string) ||
(0==portableStringCompare(m_string,other.m_string));