Skip to content

Commit

Permalink
coreinit/screen: Swap row and column parameters in OSScreenPutFontEx (#…
Browse files Browse the repository at this point in the history
…391)

* coreinit/OSScreenPutFontEx: Swap row and column parameters

* swap the comment order too
  • Loading branch information
capitalistspz authored Jul 19, 2024
1 parent 29f5093 commit 7044eaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/coreinit/screen.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -176,8 +176,8 @@ OSScreenFlipBuffersEx(OSScreenID screen);
*/
void
OSScreenPutFontEx(OSScreenID screen,
uint32_t row,
uint32_t column,
uint32_t row,
const char *buffer);

/**
Expand Down

0 comments on commit 7044eaa

Please sign in to comment.