Commit e8be53de authored by Cyril Deguet's avatar Cyril Deguet

* bitmap_font.cpp: fixed the white space character for "text" font

parent 2a0c82e4
......@@ -55,7 +55,7 @@ BitmapFont::BitmapFont( intf_thread_t *pIntf, const GenericBitmap &rBitmap,
}
m_table[(size_t)'"'].m_xPos = 26 * m_width;
m_table[(size_t)'@'].m_xPos = 27 * m_width;
m_table[(size_t)' '].m_xPos = 28 * m_width;
m_table[(size_t)' '].m_xPos = 29 * m_width;
for( int i = 0; i <= 9; i++ )
{
m_table['0'+i].m_xPos = i * m_width;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment