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:
authorMaxime Curioni <maxime.curioni@gmail.com>2009-04-09 01:44:38 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2009-04-09 01:44:38 +0400
commit7e1d0b50037c1fc88e52d1f377f4d96a7a11f8df (patch)
treea908c9a6ee052ae434761a9a09206b34a541a2d4 /source/blender/freestyle/intern/stroke/StyleModule.h
parent8c8579d911c7bb9ceaf1e28a26950e6db882a79d (diff)
Corrected the problem of the view moving after a Freestyle render, when positioned at the camera location
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StyleModule.h')
-rwxr-xr-xsource/blender/freestyle/intern/stroke/StyleModule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/stroke/StyleModule.h b/source/blender/freestyle/intern/stroke/StyleModule.h
index 390a67d633d..53eb107ad00 100755
--- a/source/blender/freestyle/intern/stroke/StyleModule.h
+++ b/source/blender/freestyle/intern/stroke/StyleModule.h
@@ -69,7 +69,7 @@ public:
Operators::reset();
int errorCode;
- if( errorCode = _inter->interpretFile(_file_name)) {
+ if( (errorCode = _inter->interpretFile(_file_name)) ) {
cerr << "Error: interpretation failed with code " << errorCode << endl;
return NULL;
}