From 7044eaa8e4bc4f61f2022095666f8ba8f7204712 Mon Sep 17 00:00:00 2001 From: capitalistspz Date: Fri, 19 Jul 2024 18:56:49 +0100 Subject: [PATCH] coreinit/screen: Swap row and column parameters in OSScreenPutFontEx (#391) * coreinit/OSScreenPutFontEx: Swap row and column parameters * swap the comment order too --- include/coreinit/screen.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); /**