Index: trunk/src/gui/gui_gfx_renderer.cc
===================================================================
--- trunk/src/gui/gui_gfx_renderer.cc	(revision 433)
+++ trunk/src/gui/gui_gfx_renderer.cc	(revision 435)
@@ -147,5 +147,5 @@
 	size_t wsize = m_atlas.get_depth() * 4 * 4;
 	uint8* wfill = new uint8[m_atlas.get_depth() * 4 * 4];
-	std::fill( wfill, wfill + wsize, 255 );
+	raw_fill( wfill, wfill + wsize, 255 );
 	white.pos = ivec2();
 	m_atlas.set_region( white, wfill );
@@ -189,8 +189,6 @@
 nv::size_t gfx_renderer::load_font( const string_view& filename, nv::size_t size )
 {
-	std::string id_name( filename.data(), filename.size() );
-	char buffer[8]; size_t len = nv::sint32_to_buffer( sint32( size ), buffer );
-	id_name.append( std::string( buffer, len ) );
-	string_view id( id_name.c_str(), id_name.size() );
+	string128 id( filename );
+	id.append( size );
 	auto i = m_font_names.find( id );
 	if ( i != m_font_names.end() )
