소스 검색

fixed an "unsigned float problem"

Adrien Boucaud 12 년 전
부모
커밋
b38ada9bd0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      struct.h

+ 1 - 1
struct.h

@@ -48,7 +48,7 @@ struct Camera{
     int cX;
     int cY;
     int angle;
-    unsigned float zoom;
+    float zoom;
 
     float speed;
 };