diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/gui/truetypefont.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-10-19 Philipp Sehmisch <tmw@crushnet.org> + + * src/gui/truetypefont.cpp: Increased text chunk cache size to improve + performance when a lot of text is on the screen. + 2007-10-18 Guillaume Melquiond <guillaume.melquiond@gmail.com> * src/beingmanager.h, src/beingmanager.cpp, src/net/beinghandler.cpp: diff --git a/src/gui/truetypefont.cpp b/src/gui/truetypefont.cpp index bba268c7..4f17b135 100644 --- a/src/gui/truetypefont.cpp +++ b/src/gui/truetypefont.cpp @@ -30,7 +30,7 @@ #include "../graphics.h" #include "../resources/image.h" -#define CACHE_SIZE 30 +#define CACHE_SIZE 256 class TextChunk { |