changed to call internal snprintf/vsnprintf

This commit is contained in:
unknown 2004-10-21 19:02:01 +00:00
commit 63920158ce
79 changed files with 350 additions and 294 deletions

View file

@ -251,7 +251,7 @@ public:
// Convert to Uint32 in order to be able to print it to screen
Uint32 lapTime = (Uint32)m_ticks;
Uint32 secTime = lapTime/1000;
snprintf(buf, 255, "%d secs (%d ms)", secTime, lapTime);
BaseString::snprintf(buf, 255, "%d secs (%d ms)", secTime, lapTime);
return buf;
}
private: