瀏覽代碼

Merge pull request #577 from blackberry-gaming/next-ablake

Fix for issue 195.
Sean Paul Taylor 13 年之前
父節點
當前提交
ffd430fd04
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gameplay/src/Properties.cpp

+ 1 - 1
gameplay/src/Properties.cpp

@@ -574,7 +574,7 @@ Properties* Properties::getNamespace(const char* id, bool searchNames) const
         }
         
         // Search recursively.
-        ret = ret->getNamespace(id);
+        ret = ret->getNamespace(id, searchNames);
         if (ret != NULL)
         {
             return ret;