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:
Diffstat (limited to 'source/blender/imbuf/intern/cmap.c')
-rw-r--r--source/blender/imbuf/intern/cmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/cmap.c b/source/blender/imbuf/intern/cmap.c
index f5302b311d8..c955fbf7e60 100644
--- a/source/blender/imbuf/intern/cmap.c
+++ b/source/blender/imbuf/intern/cmap.c
@@ -64,12 +64,12 @@ void IMB_freeImBufdata(void)
}
-int IMB_alpha_to_col0(int new)
+int IMB_alpha_to_col0(int value)
{
int old;
old = alpha_col0;
- alpha_col0 = new;
+ alpha_col0 = value;
return (old);
}