Updated love.graphics.newFont() in doc/api.md

This commit is contained in:
rxi
2016-09-23 00:58:27 +01:00
parent 06caffd3ab
commit 963cb01ff0

View File

@@ -138,11 +138,9 @@ dimensions as the screen.
##### love.graphics.newQuad(x, y, width, height)
Creates and returns a new quad.
##### love.graphics.newFont([filename])
Creates and returns a new font. `filename` should be the name of a black and
white 8bit .pcx image file representing all 256 characters in a 16 x 16
character grid. If no `filename` is given then the default embedded font image
is used.
##### love.graphics.newFont([filename [, ptsize]])
Creates and returns a new font. `filename` should be the name of a ttf file and
`ptsize` its size. If no `filename` is provided the built in font is used.
##### love.graphics.present()
Flips the current screen buffer with the displayed screen buffer. This is