Index: trunk/nv/gl/texture_font.hh
===================================================================
--- trunk/nv/gl/texture_font.hh	(revision 27)
+++ trunk/nv/gl/texture_font.hh	(revision 28)
@@ -19,10 +19,10 @@
 	struct texture_glyph
 	{
-	    uint16 charcode;
+		uint16 charcode;
 		glm::ivec2 size;
-	    glm::ivec2 offset;
-	    glm::vec2 advance;
-	    glm::vec2 tl;
-	    glm::vec2 br;
+		glm::ivec2 offset;
+		glm::vec2 advance;
+		glm::vec2 tl;
+		glm::vec2 br;
 		std::unordered_map< uint16, float > kerning;
 
@@ -33,27 +33,28 @@
 	class texture_font
 	{
-	public:
-		texture_font( texture_atlas* atlas, const char * filename, float size );
-		const texture_glyph* get_glyph( uint16 charcode ) const;
-		bool load_glyphs( const std::string& codes );
-		~texture_font();
-	private:
-		void generate_kerning();
-	private:
-		std::unordered_map< uint16, texture_glyph > m_glyphs;
-		texture_atlas* m_atlas;
-		std::string m_filename;
-		float m_size;
-	    float m_height;
-	    float m_linegap;
-	    float m_ascender;
-	    float m_descender;
-		bool m_hinting;
-		bool m_filtering;
-		uint8 m_lcd_weights[5];
-		void* m_rlibrary;
-		void* m_rface;
+		public:
+			texture_font( texture_atlas* atlas, const char * filename, float size );
+			const texture_glyph* get_glyph( uint16 charcode ) const;
+			bool load_glyphs( const std::string& codes );
+			~texture_font();
+		private:
+			void generate_kerning();
+		private:
+			std::unordered_map< uint16, texture_glyph > m_glyphs;
+			texture_atlas* m_atlas;
+			std::string m_filename;
+			float m_size;
+			float m_height;
+			float m_linegap;
+			float m_ascender;
+			float m_descender;
+			bool m_hinting;
+			bool m_filtering;
+			uint8 m_lcd_weights[5];
+			void* m_rlibrary;
+			void* m_rface;
 	};
 }
 
 #endif // NV_GL_TEXTURE_FONT_HH
+
Index: trunk/src/gl/texture_atlas.cc
===================================================================
--- trunk/src/gl/texture_atlas.cc	(revision 27)
+++ trunk/src/gl/texture_atlas.cc	(revision 28)
@@ -8,4 +8,5 @@
 
 #include "nv/logging.hh"
+#include <iostream>
 
 using namespace nv;
@@ -25,4 +26,5 @@
 	int best_index  = -1;
 	int best_width  = INT_MAX;
+	std::cout << "The size is: " << m_nodes.size() << std::endl;
 	for( size_t i=0; i < m_nodes.size(); ++i )
 	{
Index: trunk/src/gl/texture_font.cc
===================================================================
--- trunk/src/gl/texture_font.cc	(revision 27)
+++ trunk/src/gl/texture_font.cc	(revision 28)
@@ -26,5 +26,5 @@
 	: m_atlas( atlas ), m_filename(filename), m_size( size ), 
 	m_height(0), m_linegap(0), m_ascender(0), m_descender(0),
-	m_rlibrary( nullptr ), m_rface( nullptr ), m_hinting( true ), m_filtering( true )
+	m_hinting( true ), m_filtering( true ), m_rlibrary( nullptr ), m_rface( nullptr )
 {
 	size_t hres = 64;
