diff --git a/include/coreinit/screen.h b/include/coreinit/screen.h index 421f3c117..84e58dc4b 100644 --- a/include/coreinit/screen.h +++ b/include/coreinit/screen.h @@ -154,14 +154,14 @@ OSScreenFlipBuffersEx(OSScreenID screen); * \param screen * The ID of the screen to draw to. Only the work buffer will be affected. * - * \param row - * The row, in characters, to place the text in. 0 corresponds to the top of - * the screen. - * * \param column * The column, in characters, to place the text at. 0 corresponds to the left of * the screen. * + * \param row + * The row, in characters, to place the text in. 0 corresponds to the top of + * the screen. + * * \param buffer * Pointer to the string of text to draw. Null-terminated. * @@ -176,8 +176,8 @@ OSScreenFlipBuffersEx(OSScreenID screen); */ void OSScreenPutFontEx(OSScreenID screen, - uint32_t row, uint32_t column, + uint32_t row, const char *buffer); /**