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:
authorCampbell Barton <ideasman42@gmail.com>2014-01-15 08:45:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-15 08:46:32 +0400
commit435a896fbe458b0e6046aecced5a7bc52e4f7333 (patch)
tree4f644445cb96665181cba078ea0afd66cc90ee71 /source/blender/editors/gpencil/editaction_gpencil.c
parenta19f0775417420396122ae17e528b6c2e4b80555 (diff)
Fix for mistake in recent shadow addition in tabs
Diffstat (limited to 'source/blender/editors/gpencil/editaction_gpencil.c')
-rw-r--r--source/blender/editors/gpencil/editaction_gpencil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c
index cb3135c710d..9b7d691f081 100644
--- a/source/blender/editors/gpencil/editaction_gpencil.c
+++ b/source/blender/editors/gpencil/editaction_gpencil.c
@@ -469,9 +469,9 @@ void paste_gpdata(Scene *scene)
/* -------------------------------------- */
/* Snap Tools */
-static short snap_gpf_nearest(bGPDframe *gpf, Scene *UNUSED(scene))
+static short snap_gpf_nearest(bGPDframe *UNUSED(gpf), Scene *UNUSED(scene))
{
-#if 0 /* XXX: gpf->framenum is already an int! */
+#if 0 /* note: gpf->framenum is already an int! */
if (gpf->flag & GP_FRAME_SELECT)
gpf->framenum = (int)(floor(gpf->framenum + 0.5));
#endif