# bugfix Importer::SetPropertyBool

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@924 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
aramis_acg 2011-03-23 14:26:54 +00:00
parent 0fc965da91
commit 5dd2bc1408
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public:
* @see SetPropertyInteger()
*/
void SetPropertyBool(const char* szName, bool value, bool* bWasExisting = NULL) {
SetPropertyInteger(szName,value);
SetPropertyInteger(szName,value,bWasExisting);
}
// -------------------------------------------------------------------