Jeck - Stricter cache limits.

This commit is contained in:
wagic.jeck
2009-09-19 22:34:48 +00:00
parent 0d3686e65a
commit 8cc9bff484
2 changed files with 8 additions and 36 deletions

View File

@@ -9,10 +9,10 @@
#include <list>
//Soft limits.
//For values higher than ~8000000, we run the danger of hitting our reserved space in deck editor.
#define HUGE_CACHE_LIMIT 8000000
#define LARGE_CACHE_LIMIT 6000000
#define SMALL_CACHE_LIMIT 3000000
//For values higher than ~6000000, we run the danger of hitting our reserved space in deck editor.
#define HUGE_CACHE_LIMIT 6000000
#define LARGE_CACHE_LIMIT 4000000
#define SMALL_CACHE_LIMIT 2000000
#define HUGE_CACHE_ITEMS 200
#define LARGE_CACHE_ITEMS 150