Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Erwin <significant.bit@gmail.com>2015-12-16 09:24:15 +0300
committerMike Erwin <significant.bit@gmail.com>2015-12-16 09:26:41 +0300
commit901b0dea620a943a227ae2d7732cef0948777e7e (patch)
tree1732ea1731facc8a63f5d68c86a84d11a6607f94 /source/blender/editors/include
parentee59df521f2af10d6a34158a39bf21dd5ae847a3 (diff)
cleanup: C99
- for loop scope - tighter scope on local vars - more bool - more const
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_view3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h
index f325aba7c70..d44c401e2a3 100644
--- a/source/blender/editors/include/ED_view3d.h
+++ b/source/blender/editors/include/ED_view3d.h
@@ -265,7 +265,7 @@ float ED_view3d_radius_to_dist(
const char persp, const bool use_aspect,
const float radius);
-void drawcircball(int mode, const float cent[3], float rad, float tmat[4][4]);
+void drawcircball(int mode, const float cent[3], float rad, const float tmat[4][4]);
/* backbuffer select and draw support */
void ED_view3d_backbuf_validate(struct ViewContext *vc);