Browse Source

Fixed a minor bug

Josh Yelon 17 years ago
parent
commit
db026d888d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/pgraph/shaderAttrib.I

+ 2 - 2
panda/src/pgraph/shaderAttrib.I

@@ -44,8 +44,8 @@ ShaderAttrib(const ShaderAttrib &copy) :
   _shader_priority(copy._shader_priority),
   _shader_priority(copy._shader_priority),
   _auto_shader(copy._auto_shader),
   _auto_shader(copy._auto_shader),
   _has_shader(copy._has_shader),
   _has_shader(copy._has_shader),
-  _flags(_flags),
-  _has_flags(_has_flags),
+  _flags(copy._flags),
+  _has_flags(copy._has_flags),
   _inputs(copy._inputs)
   _inputs(copy._inputs)
 {
 {
 }
 }