Explorar el Código

Text objects don't do bold by default. The fonts themselves should be bold.

legacy
Sam Hocevar sam hace 14 años
padre
commit
1dbd80b2a0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/text.cpp

+ 1
- 1
src/text.cpp Ver fichero

@@ -65,7 +65,7 @@ void Text::TickDraw(float deltams)
if (data->text)
{
Font *font = Forge::GetFont(data->font);
font->PrintBold(data->pos.x, data->pos.y, data->text);
font->Print(data->pos.x, data->pos.y, data->text);
}
}



Cargando…
Cancelar
Guardar