Skip to content

Commit 4239e66

Browse files
committed
Update rshapes.c
1 parent dfabbd8 commit 4239e66

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/rshapes.c

-2
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color colo
178178
{
179179
rlBegin(RL_LINES);
180180
rlColor4ub(color.r, color.g, color.b, color.a);
181-
// WARNING: Adding 0.5f offset to "center" point on selected pixel
182181
rlVertex2f((float)startPosX, (float)startPosY);
183182
rlVertex2f((float)endPosX, (float)endPosY);
184183
rlEnd();
@@ -189,7 +188,6 @@ void DrawLineV(Vector2 startPos, Vector2 endPos, Color color)
189188
{
190189
rlBegin(RL_LINES);
191190
rlColor4ub(color.r, color.g, color.b, color.a);
192-
// WARNING: Adding 0.5f offset to "center" point on selected pixel
193191
rlVertex2f(startPos.x, startPos.y);
194192
rlVertex2f(endPos.x, endPos.y);
195193
rlEnd();

0 commit comments

Comments
 (0)