From 622d1ee2637c8c1b0825993ab6599d1fa3cb3d63 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 31 Jul 2001 16:33:11 +0000 Subject: [PATCH] --- source/game/game.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/game/game.cpp b/source/game/game.cpp index bb49a4295..cd3102aa6 100644 --- a/source/game/game.cpp +++ b/source/game/game.cpp @@ -480,6 +480,17 @@ void CGameScene::think(int _frames) } break; } + + +#ifdef __VERSION_DEBUG__ + char buf[20]; + sprintf(buf,"Frames: %d",_frames); + m_scalableFont->setTrans(0); + m_scalableFont->setSMode(0); + m_scalableFont->setColour(128,128,128); + m_scalableFont->setScale(300); + m_scalableFont->print(40,200,buf); +#endif } /*****************************************************************************/