浏览代码

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;
 };