Fixed an uninizialized data bug in make_default_impl

This commit is contained in:
Josh Yelon 2007-12-17 21:46:20 +00:00
parent e75c8695dd
commit eeb8b61bc9

View File

@ -23,7 +23,12 @@
// Description:
////////////////////////////////////////////////////////////////////
INLINE ShaderAttrib::
ShaderAttrib() {
ShaderAttrib() :
_shader(NULL),
_shader_priority(0),
_has_shader(false),
_auto_shader(false)
{
}
////////////////////////////////////////////////////////////////////