[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58842] trunk/blender/source/gameengine/ VideoTexture/ImageMix.h: BGE: Making sure m_offset is initialized in the ImageSourceMix constructor.

Mitchell Stokes mogurijin at gmail.com
Sat Aug 3 07:01:36 CEST 2013


Revision: 58842
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58842
Author:   moguri
Date:     2013-08-03 05:01:36 +0000 (Sat, 03 Aug 2013)
Log Message:
-----------
BGE: Making sure m_offset is initialized in the ImageSourceMix constructor.

Modified Paths:
--------------
    trunk/blender/source/gameengine/VideoTexture/ImageMix.h

Modified: trunk/blender/source/gameengine/VideoTexture/ImageMix.h
===================================================================
--- trunk/blender/source/gameengine/VideoTexture/ImageMix.h	2013-08-03 05:01:32 UTC (rev 58841)
+++ trunk/blender/source/gameengine/VideoTexture/ImageMix.h	2013-08-03 05:01:36 UTC (rev 58842)
@@ -43,7 +43,7 @@
 {
 public:
 	/// constructor
-	ImageSourceMix (const char *id) : ImageSource(id), m_weight(0x100) {}
+	ImageSourceMix (const char *id) : ImageSource(id), m_offset(0), m_weight(0x100) {}
 	/// destructor
 	virtual ~ImageSourceMix (void) {}
 




More information about the Bf-blender-cvs mailing list