From a72a079e04d08cfda0c461f499f0bb5cbae80a14 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 13 Jan 2004 18:36:47 +0000 Subject: [PATCH] default should be at least 60 seconds of history --- panda/src/pstatclient/config_pstats.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pstatclient/config_pstats.cxx b/panda/src/pstatclient/config_pstats.cxx index 606954c67a..081307eb0e 100644 --- a/panda/src/pstatclient/config_pstats.cxx +++ b/panda/src/pstatclient/config_pstats.cxx @@ -42,7 +42,7 @@ const float pstats_target_frame_rate = config_pstats.GetFloat("pstats-target-fra // The rest are different in that they directly control the server, // not the client. const bool pstats_scroll_mode = config_pstats.GetBool("pstats-scroll-mode", true); -const float pstats_history = config_pstats.GetFloat("pstats-history", 30.0); +const float pstats_history = config_pstats.GetFloat("pstats-history", 60.0); const bool pstats_threaded_write = config_pstats.GetBool("pstats-threaded-write", false); ////////////////////////////////////////////////////////////////////