Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-12-14 13:48:12 +0400
committerThomas Dinges <blender@dingto.org>2013-12-14 13:48:12 +0400
commit01fc7a687a19ef2dc8dac43ed9db69da35e3a55a (patch)
treedad6bc578350d2bc471a16f69e45ee998af29489 /source/blender/blenloader
parentdda37dbc5c91d109777e396e7c1a819474f19f05 (diff)
Code cleanup: Remove "TexFace to Material Convert", from the file menu. This was used for conversion from older 2.5x files. The do_version() code is still there and functioning though.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6e64dcc0560..e5304c7e9d8 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -7349,7 +7349,7 @@ static void convert_tface_mt(FileData *fd, Main *main)
gmain = G.main;
G.main = main;
- if (!(do_version_tface(main, 1))) {
+ if (!(do_version_tface(main))) {
BKE_report(fd->reports, RPT_WARNING, "Texface conversion problem (see error in console)");
}