From db026d888d6b242b17e313912d0fab0a267a5ef4 Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Tue, 27 May 2008 22:18:40 +0000 Subject: [PATCH] Fixed a minor bug --- panda/src/pgraph/shaderAttrib.I | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/pgraph/shaderAttrib.I b/panda/src/pgraph/shaderAttrib.I index 1f0e64e6df..651ab9c47d 100755 --- a/panda/src/pgraph/shaderAttrib.I +++ b/panda/src/pgraph/shaderAttrib.I @@ -44,8 +44,8 @@ ShaderAttrib(const ShaderAttrib ©) : _shader_priority(copy._shader_priority), _auto_shader(copy._auto_shader), _has_shader(copy._has_shader), - _flags(_flags), - _has_flags(_has_flags), + _flags(copy._flags), + _has_flags(copy._has_flags), _inputs(copy._inputs) { }