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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-05-07 18:23:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-07 18:23:50 +0300
commit0d29a4fa7a87a81d6a1cef17b5f4e81a41beca7c (patch)
tree8029b5edcfb129ac744da4ec313004dc35024435 /source/blender/editors/animation/anim_markers.c
parenta488a21f4fa0202c1760a8f77ec2752510f1fe76 (diff)
Fix compilation error
Diffstat (limited to 'source/blender/editors/animation/anim_markers.c')
-rw-r--r--source/blender/editors/animation/anim_markers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index 38024ad73d2..876bc9ae3e4 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -481,7 +481,7 @@ static void draw_markers_background(rctf *rect)
uint pos = GPU_vertformat_attr_add(immVertexFormat(), "pos", GPU_COMP_F32, 2, GPU_FETCH_FLOAT);
immBindBuiltinProgram(GPU_SHADER_2D_UNIFORM_COLOR);
- const unsigned char shade[4];
+ unsigned char shade[4];
UI_GetThemeColor4ubv(TH_SCRUBBING_BACKGROUND, shade);
immUniformColor4ubv(shade);