From c775c7bfabe9d28b9a2af4ec23e5c1a516fbbeee Mon Sep 17 00:00:00 2001 From: cxgeorge <> Date: Tue, 26 Feb 2002 00:19:08 +0000 Subject: [PATCH] reduce max search depth --- panda/src/sgmanip/nodePath.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/sgmanip/nodePath.cxx b/panda/src/sgmanip/nodePath.cxx index 9cf80bdd6e..b62a47d638 100644 --- a/panda/src/sgmanip/nodePath.cxx +++ b/panda/src/sgmanip/nodePath.cxx @@ -43,9 +43,9 @@ #include "plist.h" -// stack seems to overflow on Intel C++ at 8000. If we need more than -// 7500, need to increase stack size. -int NodePath::_max_search_depth = 7500; +// stack seems to overflow on Intel C++ at 7000. If we need more than +// 7000, need to increase stack size. +int NodePath::_max_search_depth = 7000; TypeHandle NodePath::_type_handle; // This class is used in prepare_scene() to traverse the scene graph