Skip to content
Snippets Groups Projects
Commit 59bfc3f6 authored by Kitty Barnett's avatar Kitty Barnett
Browse files

Minor fix for GCC

parent fadd23dc
No related branches found
No related tags found
No related merge requests found
......@@ -1948,8 +1948,8 @@ void LLLineEditor::draw()
gGL.color4ub(255, 0, 0, 200);
while (pxStart < pxEnd)
{
gl_line_2d(pxStart, text_bottom - 2, pxStart + 3, text_bottom + 1);
gl_line_2d(pxStart + 3, text_bottom + 1, pxStart + 6, text_bottom - 2);
gl_line_2d(pxStart, (S32)text_bottom - 2, pxStart + 3, (S32)text_bottom + 1);
gl_line_2d(pxStart + 3, (S32)text_bottom + 1, pxStart + 6, (S32)text_bottom - 2);
pxStart += 6;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment