mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 01:39:36 +00:00
add source-sdk-2013
This commit is contained in:
@@ -177,14 +177,12 @@ void CSchemeVisualizer::AddBordersToList()
|
||||
void CSchemeVisualizer::AddFontsToList()
|
||||
{
|
||||
#ifdef POSIX
|
||||
const char strOAccent[] = { (char)0xc3, (char)0x93, 0x00 }; // UTF-8 for U+00D3 (LATIN CAPITAL LETTER O WITH ACUTE)
|
||||
const char strSkull[] = { (char)0xe2, (char)0x98, (char)0xa0, 0x00 };
|
||||
const char strOAccent[] = { (char)0xc3, (char)0x93, (char)0x00 }; // UTF-8 for U+00D3 (LATIN CAPITAL LETTER O WITH ACUTE)
|
||||
#else
|
||||
const uint8 strOAccent[] = { 0xd3, 0x00 };
|
||||
const char strSkull[] = "";
|
||||
const uint8 strOAccent[] = { (char)0xd3, (char)0x00 };
|
||||
#endif
|
||||
// Stick an intl character in here to test accents (O')
|
||||
CFmtStr fmtText( "ABCDEFGHIJKLMN%sPQRSTUVWXYZ%sabcdefhijklmnopqrstuvwxyz0123456789!@#$%%^&*()-_=+", strOAccent, strSkull );
|
||||
CFmtStr fmtText( "ABCDEFGHIJKLMN%sPQRSTUVWXYZabcdefhijklmnopqrstuvwxyz0123456789!@#$%%^&*()-_=+", strOAccent );
|
||||
|
||||
const int nFontCount = m_pViewScheme->GetFontCount();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user