Merging r48810 through r48812 from trunk into soc-2011-tomato

This commit is contained in:
Sergey Sharybin
2012-07-10 15:47:39 +00:00
3 changed files with 4 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ extern "C" {
* and keep comment above the defines.
* Use STRINGIFY() rather than defining with quotes */
#define BLENDER_VERSION 263
#define BLENDER_SUBVERSION 13
#define BLENDER_SUBVERSION 14
#define BLENDER_MINVERSION 250
#define BLENDER_MINSUBVERSION 0

View File

@@ -7890,7 +7890,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
ntreetype->foreach_nodetree(main, NULL, do_version_ntree_dilateerode_264);
}
{
if (main->versionfile < 263 || (main->versionfile == 263 && main->subversionfile < 14)) {
bNodeTreeType *ntreetype = ntreeGetType(NTREE_COMPOSIT);
if (ntreetype && ntreetype->foreach_nodetree)

View File

@@ -152,8 +152,9 @@ static void check_unused_keys(MovieCache *cache)
remove = !item->ibuf;
if (remove)
if (remove) {
PRINT("%s: cache '%s' remove item %p without buffer\n", __func__, cache->name, item);
}
if (remove)
BLI_ghash_remove(cache->hash, key, moviecache_keyfree, moviecache_valfree);