diff options
author | Heinrich Schuchardt | 2018-09-19 20:18:38 +0200 |
---|---|---|
committer | Anatolij Gustschin | 2018-09-28 18:25:18 +0200 |
commit | 5cb4860f3df83da9610baf0ac3a4f2836fdfa328 (patch) | |
tree | 0d8b1ce8c7565d45956f7f557f53de99dd144c0d /include/video_console.h | |
parent | 9cdbc906721454b2db57dc2a38d236c35900960d (diff) |
dm: video: adjust struct vidconsole_priv description
The third component of struct vidconsole_priv is ycur.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/video_console.h')
-rw-r--r-- | include/video_console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/video_console.h b/include/video_console.h index 63af741778d..44e7bdbe290 100644 --- a/include/video_console.h +++ b/include/video_console.h @@ -45,7 +45,7 @@ enum color_idx { * * @sdev: stdio device, acting as an output sink * @xcur_frac: Current X position, in fractional units (VID_TO_POS(x)) - * @curr_row: Current Y position in pixels (0=top) + * @ycur: Current Y position in pixels (0=top) * @rows: Number of text rows * @cols: Number of text columns * @x_charsize: Character width in pixels |