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/blendVideoTex.cpp')
-rw-r--r--source/gameengine/VideoTexture/blendVideoTex.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/gameengine/VideoTexture/blendVideoTex.cpp b/source/gameengine/VideoTexture/blendVideoTex.cpp
index 72415026bb9..e23bd1a3231 100644
--- a/source/gameengine/VideoTexture/blendVideoTex.cpp
+++ b/source/gameengine/VideoTexture/blendVideoTex.cpp
@@ -214,12 +214,12 @@ PyObject *initVideoTexture(void)
pyFilterTypes.reg(m);
Py_INCREF(&TextureType);
- PyModule_AddObject(m, (char*)"Texture", (PyObject *)&TextureType);
- PyModule_AddIntConstant(m, (char*)"SOURCE_ERROR", SourceError);
- PyModule_AddIntConstant(m, (char*)"SOURCE_EMPTY", SourceEmpty);
- PyModule_AddIntConstant(m, (char*)"SOURCE_READY", SourceReady);
- PyModule_AddIntConstant(m, (char*)"SOURCE_PLAYING", SourcePlaying);
- PyModule_AddIntConstant(m, (char*)"SOURCE_STOPPED", SourceStopped);
+ PyModule_AddObject(m, "Texture", (PyObject *)&TextureType);
+ PyModule_AddIntConstant(m, "SOURCE_ERROR", SourceError);
+ PyModule_AddIntConstant(m, "SOURCE_EMPTY", SourceEmpty);
+ PyModule_AddIntConstant(m, "SOURCE_READY", SourceReady);
+ PyModule_AddIntConstant(m, "SOURCE_PLAYING", SourcePlaying);
+ PyModule_AddIntConstant(m, "SOURCE_STOPPED", SourceStopped);
// init last error description
Exception::m_lastError = "";