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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-10-05 18:06:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-10-05 19:17:19 +0400
commit7fff7beac157ab8bf5b0aed39f470ebbe8261e24 (patch)
tree8c2464c95af5fe2a02b5037caa638e252b5d9ee4 /source
parent9241f12e10c7f82872f257e5fbbd6f2c68733fa7 (diff)
Cleanup: sculpt float -> bool
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 891130af7d8..defc7d78c2a 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -192,8 +192,8 @@ typedef struct StrokeCache {
float true_location[3];
float location[3];
- float pen_flip;
- float invert;
+ bool pen_flip;
+ bool invert;
float pressure;
float mouse[2];
float bstrength;