aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gestures.c2
-rw-r--r--src/rlgl.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/gestures.c b/src/gestures.c
index 3638f23e..e615c06d 100644
--- a/src/gestures.c
+++ b/src/gestures.c
@@ -155,8 +155,6 @@ void ProcessGestureEvent(GestureEvent event)
dragDistance = Vector2Distance(touchDownPosition, touchUpPosition);
dragIntensity = dragDistance/(float)((GetCurrentTime() - swipeTime));
- // TODO: Make getures detection resolution independant
-
startMoving = false;
// Detect GESTURE_SWIPE
diff --git a/src/rlgl.c b/src/rlgl.c
index 5f8a5ea1..8ea7d0f2 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -1611,7 +1611,6 @@ void rlglInitGraphics(int offsetX, int offsetY, int width, int height)
}
// Get world coordinates from screen coordinates
-// TODO: It doesn't work! It drives me crazy!
// NOTE: Using global variables: screenWidth, screenHeight
Vector3 rlglUnproject(Vector3 source, Matrix proj, Matrix view)
{