[CHG] Some doxygen improvement

This commit is contained in:
Crayon2000 2009-08-28 18:11:33 +00:00
parent ccb6ec7cf5
commit b46057fff7
3 changed files with 4 additions and 4 deletions

View file

@ -29,6 +29,7 @@ THE SOFTWARE.
* Load a ByteMap font structure from a buffer.
* @param my_bmf The ByteMap font buffer to load.
* @return A GRRLIB_bytemapFont structure filled with BMF informations.
* @see GRRLIB_FreeBMF
*/
GRRLIB_bytemapFont* GRRLIB_LoadBMF (const u8 my_bmf[] ) {
GRRLIB_bytemapFont *fontArray = (struct GRRLIB_bytemapFont *)malloc(sizeof(GRRLIB_bytemapFont));

View file

@ -58,7 +58,7 @@ void GRRLIB_Printf (const f32 xpos, const f32 ypos,
}
/**
* Print formatted output.
* Print formatted output with a ByteMap font.
* @param xpos Specifies the x-coordinate of the upper-left corner of the text.
* @param ypos Specifies the y-coordinate of the upper-left corner of the text.
* @param bmf The ByteMap font to use.
@ -71,7 +71,6 @@ void GRRLIB_PrintBMF (const f32 xpos, const f32 ypos,
const f32 zoom, const char *text, ...) {
uint i, j, x, y, n, size;
char tmp[1024];
f32 xoff = xpos;
va_list argp;