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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-06-06 04:35:48 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-06-06 04:35:48 +0400
commitcc72f9b51618ac8026f7fa7d304f2a164964b322 (patch)
treea63ffc98b07d5a15eba015298045ab02864a4cda /source/gameengine/VideoTexture/ImageBase.cpp
parenta6d5f43ac850e62100dedbdcee0823699bab34e6 (diff)
small warning fix.
Diffstat (limited to 'source/gameengine/VideoTexture/ImageBase.cpp')
-rw-r--r--source/gameengine/VideoTexture/ImageBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/VideoTexture/ImageBase.cpp b/source/gameengine/VideoTexture/ImageBase.cpp
index 8fe460befa4..88a20fadcf7 100644
--- a/source/gameengine/VideoTexture/ImageBase.cpp
+++ b/source/gameengine/VideoTexture/ImageBase.cpp
@@ -650,7 +650,7 @@ int Image_getbuffer(PyImage *self, Py_buffer *view, int flags)
catch (Exception & exp)
{
// cannot return -1, this creates a crash in Python, for now we will just return an empty buffer
- //exp.report();
+ exp.report();
//return -1;
goto error;
}