Skip to content

Commit fe29640

Browse files
committed
remove more spurious commas
1 parent dc1135d commit fe29640

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

gc/ogc/console.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
* \brief Initializes the console subsystem with given parameters
5656
*
5757
* \param[in] framebuffer pointer to the framebuffer used for drawing the characters
58-
* \param[in] xstart,ystart start position of the console output, in pixels
59-
* \param[in] xres,yres size of the console, in pixels
60-
* \param[in] stride size of one line of the framebuffer, in bytes
58+
* \param[in] xstart,ystart start position of the console output in pixels
59+
* \param[in] xres,yres size of the console in pixels
60+
* \param[in] stride size of one line of the framebuffer in bytes
6161
*
6262
* \return none
6363
*/
@@ -69,8 +69,8 @@ void CON_Init(void *framebuffer,int xstart,int ystart,int xres,int yres,int stri
6969
* \param[in] rmode pointer to the video/render mode configuration
7070
* \param[in] conXOrigin starting pixel in X direction of the console output on the external framebuffer
7171
* \param[in] conYOrigin starting pixel in Y direction of the console output on the external framebuffer
72-
* \param[in] conWidth width of the console output 'window' to be drawn, in pixels
73-
* \param[in] conHeight height of the console output 'window' to be drawn, in pixels
72+
* \param[in] conWidth width of the console output 'window' to be drawn in pixels
73+
* \param[in] conHeight height of the console output 'window' to be drawn in pixels
7474
*
7575
* \return 0 on success, <0 on error
7676
*/
@@ -80,7 +80,7 @@ s32 CON_InitEx(GXRModeObj *rmode, s32 conXOrigin,s32 conYOrigin,s32 conWidth,s32
8080
* \fn CON_GetMetrics(int *cols, int *rows)
8181
* \brief retrieve the columns and rows of the current console
8282
*
83-
* \param[out] cols,rows number of columns and rows of the current console, in tiles
83+
* \param[out] cols,rows number of columns and rows of the current console in tiles
8484
*
8585
* \return none
8686
*/
@@ -90,7 +90,7 @@ void CON_GetMetrics(int *cols, int *rows);
9090
* \fn CON_GetPosition(int *col, int *row)
9191
* \brief retrieve the current cursor position of the current console
9292
*
93-
* \param[out] col,row current cursor position, in tiles, 1-indexed
93+
* \param[out] col,row current cursor position in tiles, 1-indexed
9494
*
9595
* \return none
9696
*/
@@ -163,8 +163,8 @@ typedef struct PrintConsole
163163
int prevCursorX; ///< Internal state
164164
int prevCursorY; ///< Internal state
165165

166-
int con_cols; ///< Width of the console hardware layer in characters (amount of tiles)
167-
int con_rows; ///< Height of the console hardware layer in characters (amount of tiles)
166+
int con_cols; ///< Width of the console hardware layer in characters (aka tiles)
167+
int con_rows; ///< Height of the console hardware layer in characters (aka tiles)
168168

169169
int windowX; ///< Window X location in tiles, 1-indexed, 1 <= windowX < con_cols
170170
int windowY; ///< Window Y location in tiles, 1-indexed

0 commit comments

Comments
 (0)