소스 검색

Redundant assignment of 'angle' to itself

pull/504/head
maficccc@gmail.com 7 년 전
committed by Martinfx
부모
커밋
44eedf235d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/gestures.h

+ 1
- 1
src/gestures.h 파일 보기

@ -493,7 +493,7 @@ float GetGesturePinchAngle(void)
// Returns angle from two-points vector with X-axis
static float Vector2Angle(Vector2 v1, Vector2 v2)
{
float angle = angle = atan2f(v2.y - v1.y, v2.x - v1.x)*(180.0f/PI);
float angle = atan2f(v2.y - v1.y, v2.x - v1.x)*(180.0f/PI);
if (angle < 0) angle += 360.0f;

불러오는 중...
취소
저장