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:
authorJoshua Leung <aligorith@gmail.com>2009-01-02 09:03:53 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-02 09:03:53 +0300
commit95753c04f5265d9da375366038ed7e64cb40e9df (patch)
tree6c8f3a67b9ce72ad37bd3d654d5821a50d15f397 /source/blender/editors/space_action/action_select.c
parent983282175084607242ba36d9e17dfcd398bce642 (diff)
2.5 - Silencing more MSVC warnings
Diffstat (limited to 'source/blender/editors/space_action/action_select.c')
-rw-r--r--source/blender/editors/space_action/action_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index 7cb1912f321..231f53a6171 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -549,8 +549,8 @@ static void markers_selectkeys_between (bAnimContext *ac)
/* get extreme markers */
//get_minmax_markers(1, &min, &max); // FIXME... add back markers api!
- min= ac->scene->r.sfra; // xxx temp code
- max= ac->scene->r.efra; // xxx temp code
+ min= (float)ac->scene->r.sfra; // xxx temp code
+ max= (float)ac->scene->r.efra; // xxx temp code
if (min==max) return;
min -= 0.5f;