Modified map.c to fix some MSVC10 compilation errors.

This commit is contained in:
Bryant Mairs 2013-01-09 21:30:33 -08:00 committed by Brian Crowell
parent e49cba9b32
commit 9f82f025dc

4
map.c
View File

@ -378,10 +378,10 @@ PyImaging_MapBuffer(PyObject* self, PyObject* args)
/* setup file pointers */ /* setup file pointers */
if (ystep > 0) if (ystep > 0)
for (y = 0; y < ysize; y++) for (y = 0; y < ysize; y++)
im->image[y] = view.buf + offset + y * stride; im->image[y] = (char*)view.buf + offset + y * stride;
else else
for (y = 0; y < ysize; y++) for (y = 0; y < ysize; y++)
im->image[ysize-y-1] = view.buf + offset + y * stride; im->image[ysize-y-1] = (char*)view.buf + offset + y * stride;
im->destroy = mapping_destroy_buffer; im->destroy = mapping_destroy_buffer;