mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix operator spacing in kernel/textbuffer.cpp.
This commit is contained in:
parent
0def94568a
commit
7bc9e067ec
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ void TextBufferHandle::FinishReplace(TextBuffer* newtextbuf)
|
|||
else if ( src_width && src_height )
|
||||
{
|
||||
TextPos templ_pos;
|
||||
templ_pos.x = src_y < src_width ? src_y : src_x- 1;
|
||||
templ_pos.x = src_y < src_width ? src_y : src_x - 1;
|
||||
templ_pos.y = src_y < src_height ? src_y : src_height - 1;
|
||||
tc = textbuf->GetChar(templ_pos);
|
||||
tc.c = 0;
|
||||
|
|
Loading…
Reference in a new issue