Fix alignment issue

This commit is contained in:
Shirasaka 2020-11-10 00:36:26 +09:00
parent 19bb177512
commit 5e7626a5c6

View File

@ -331,8 +331,8 @@ retnomove:
}
if (row >= 0 && row < Rows && col >= 0 && col <= Columns
&& gp->chars != NULL) {
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
+ (unsigned)col]);
mouse_char = utf_ptr2char(gp->chars[gp->line_offset[row]
+ (unsigned)col]);
} else {
mouse_char = ' ';
}