summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-08-04 18:34:51 +0200
committerraysan5 <[email protected]>2017-08-04 18:34:51 +0200
commiteeca607506b22f154a7b31ef8308d3ecd30ad383 (patch)
tree1be62a44111589da9f5ad72eba07eac3fdb6e294 /src/shapes.c
parent1f310f7d4b59a5a09589863d4b87df0a40c7779b (diff)
downloadraylib-eeca607506b22f154a7b31ef8308d3ecd30ad383.tar.gz
raylib-eeca607506b22f154a7b31ef8308d3ecd30ad383.zip
Review transforms to match OpenGL 1.1
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shapes.c b/src/shapes.c
index 25ed93aa..0e544718 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -123,7 +123,7 @@ void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color)
rlPushMatrix();
rlTranslatef((float)startPos.x, (float)startPos.y, 0);
- rlRotatef(-RAD2DEG*angle, 0, 0, 1);
+ rlRotatef(RAD2DEG*angle, 0, 0, 1);
rlTranslatef(0, -thick/2.0f, 0);
rlBegin(RL_QUADS);