evas: Fix PSD image loading

This commit is contained in:
Henrique Dante de Almeida 2013-01-29 11:32:44 -02:00 committed by Lucas De Marchi
parent 2ca0be9316
commit 2656d7097e
2 changed files with 2 additions and 2 deletions

View File

@ -371,7 +371,7 @@ psd_get_data(PSD_Header *head,
for (y = 0; y < head->height * bps2; y += bps2)
{
for (x = 0; x < (unsigned int)bps2; x += bpp, shortptr)
for (x = 0; x < (unsigned int)bps2; x += bpp, shortptr++)
{
unsigned int newval;

View File

@ -370,7 +370,7 @@ psd_get_data(Image_Entry *ie EINA_UNUSED,
for (y = 0; y < head->height * bps2; y += bps2)
{
for (x = 0; x < (unsigned int)bps2; x += bpp, shortptr)
for (x = 0; x < (unsigned int)bps2; x += bpp, shortptr++)
{
unsigned int newval;