mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-08-04 16:41:24 +00:00
Actually index into our pixels properly...
This commit is contained in:
parent
2263080faa
commit
0d0c65f536
|
@ -216,7 +216,7 @@ namespace PVRTCC {
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32 *outPixels = reinterpret_cast<uint32 *>(dcj.outBuf);
|
uint32 *outPixels = reinterpret_cast<uint32 *>(dcj.outBuf);
|
||||||
outPixels[(j * h) + i] = result.PackRGBA();
|
outPixels[(j * w) + i] = result.PackRGBA();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(bDebugImages) {
|
if(bDebugImages) {
|
||||||
|
|
Loading…
Reference in a new issue