summaryrefslogtreecommitdiff
path: root/src/textmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/textmanager.cpp')
-rw-r--r--src/textmanager.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textmanager.cpp b/src/textmanager.cpp
index 1bd8ebef8..f44f22383 100644
--- a/src/textmanager.cpp
+++ b/src/textmanager.cpp
@@ -66,12 +66,14 @@ TextManager::~TextManager()
void TextManager::draw(gcn::Graphics *const graphics,
const int xOff, const int yOff)
{
+ BLOCK_START("TextManager::draw")
for (TextList::const_iterator bPtr = mTextList.begin(),
ePtr = mTextList.end();
bPtr != ePtr; ++ bPtr)
{
(*bPtr)->draw(graphics, xOff, yOff);
}
+ BLOCK_END("TextManager::draw")
}
void TextManager::place(const Text *const textObj, const Text *const omit,