1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Remove support for non-extended font builds.

This commit is contained in:
Bartosz Taudul
2020-03-26 23:04:44 +01:00
parent 5ec1bd0f5e
commit 58bb5d40c5
7 changed files with 5 additions and 652 deletions
-4
View File
@@ -176,11 +176,7 @@ const char* TimeToString( int64_t _ns )
else if( ns < 1000ll * 1000 )
{
PrintSmallIntFrac( buf, ns );
#ifdef TRACY_EXTENDED_FONT
memcpy( buf, " \xce\xbcs", 5 );
#else
memcpy( buf, " us", 4 );
#endif
}
else if( ns < 1000ll * 1000 * 1000 )
{