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:
Diffstat (limited to 'source/gameengine/VideoTexture/VideoBase.cpp')
-rw-r--r--source/gameengine/VideoTexture/VideoBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/VideoTexture/VideoBase.cpp b/source/gameengine/VideoTexture/VideoBase.cpp
index d373055b5df..38d5a12c77f 100644
--- a/source/gameengine/VideoTexture/VideoBase.cpp
+++ b/source/gameengine/VideoTexture/VideoBase.cpp
@@ -112,9 +112,9 @@ void Video_open(VideoBase *self, char *file, short captureID)
if (file == NULL) THRWEXCP(SourceVideoEmpty, S_OK);
// open video file or capture device
- if (captureID >= 0)
+ if (captureID >= 0)
self->openCam(file, captureID);
- else
+ else
self->openFile(file);
}