Commit 94b56e80 authored by Olivier Teulière's avatar Olivier Teulière

skins2/src/ft2_font.*: s/initalize/initialize/

parent 6a45cc62
...@@ -65,10 +65,10 @@ bool FT2Font::init() ...@@ -65,10 +65,10 @@ bool FT2Font::init()
{ {
int err; int err;
// Initalise libfreetype // Initialize libfreetype
if( FT_Init_FreeType( &m_lib ) ) if( FT_Init_FreeType( &m_lib ) )
{ {
msg_Err( getIntf(), "failed to initalize freetype" ); msg_Err( getIntf(), "failed to initialize freetype" );
return false; return false;
} }
......
...@@ -43,7 +43,7 @@ class FT2Font: public GenericFont ...@@ -43,7 +43,7 @@ class FT2Font: public GenericFont
FT2Font( intf_thread_t *pIntf, const string &rName, int size ); FT2Font( intf_thread_t *pIntf, const string &rName, int size );
virtual ~FT2Font(); virtual ~FT2Font();
/// Initalize the object. Returns false if it failed /// Initialize the object. Returns false if it failed
virtual bool init(); virtual bool init();
/// Render a string on a bitmap. /// Render a string on a bitmap.
......
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