Windows Port:

- Oops! Missed a small typo that still caused compiling on Windows to fail. (Related to r5458.)
This commit is contained in:
rogerman 2016-06-18 01:44:15 +00:00
parent 9e07cc95b4
commit 0110fe22d6
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ static u8* Convert15To24(const u16* src, int width, int height)
for(int x=0;x<width;x++)
{
u32 dst = ConvertColor555To8888Opaque<true>(*src++);
*(u32 *)tmp_inc[i] = (dst & 0x00FFFFFF) | (*(u32 *)tmp_inc & 0xFF000000);
*(u32 *)tmp_inc[x] = (dst & 0x00FFFFFF) | (*(u32 *)tmp_inc & 0xFF000000);
tmp_inc += 3;
}
}