From b3d38bd4f16571d967da8d5355c5cfe8cff459c2 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Fri, 8 Jun 2012 20:31:42 -0400 Subject: [PATCH] Lowered default think time to 20ms (bug 4733, r=psychonic). --- core/logic/thread/ThreadWorker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/logic/thread/ThreadWorker.h b/core/logic/thread/ThreadWorker.h index 4b25bada..1699e244 100644 --- a/core/logic/thread/ThreadWorker.h +++ b/core/logic/thread/ThreadWorker.h @@ -34,7 +34,7 @@ #include "BaseWorker.h" -#define DEFAULT_THINK_TIME_MS 50 +#define DEFAULT_THINK_TIME_MS 20 class ThreadWorker : public BaseWorker, public IThread {