From bab16038615ba4a5b8ea6ab55b77ca5ddc3f6189 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 27 Oct 2005 17:09:58 +0000 Subject: [PATCH] Copy scene did not copy the markers... causing in memory errors on quit. No real baddie, but still very good to fix! --- source/blender/src/header_info.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/src/header_info.c b/source/blender/src/header_info.c index 755af1870ff..eed01d7ac6e 100644 --- a/source/blender/src/header_info.c +++ b/source/blender/src/header_info.c @@ -311,7 +311,8 @@ Scene *copy_scene(Scene *sce, int level) scen->theDag= NULL; scen->toolsettings= MEM_dupallocN(sce->toolsettings); - + duplicatelist(&(scen->markers), &(sce->markers)); + obase= sce->base.first; base= scen->base.first; while(base) {