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>2011-03-17 08:15:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-17 08:15:54 +0300
commit719afd2622d4025bc463fbc9d6f8ec50b20f5ed3 (patch)
treee9253045e025efc7e0dafdaadb3c11ae72900a65 /source/blender/imbuf/intern/rotate.c
parent197e903efc9825fc4c2f5c01a124fc7fd9934bec (diff)
changed short's to int's image scale and flip functions (images can be bigger then short range)
Diffstat (limited to 'source/blender/imbuf/intern/rotate.c')
-rw-r--r--source/blender/imbuf/intern/rotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/rotate.c b/source/blender/imbuf/intern/rotate.c
index 741806f6215..2f9d5d60baa 100644
--- a/source/blender/imbuf/intern/rotate.c
+++ b/source/blender/imbuf/intern/rotate.c
@@ -101,7 +101,7 @@ void IMB_flipy(struct ImBuf * ibuf)
void IMB_flipx(struct ImBuf * ibuf)
{
- short x, y, xr, xl, yi;
+ int x, y, xr, xl, yi;
float px_f[4];
if (ibuf == NULL) return;