1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Code cleanup: remove unused variables in DepthBufferToRDRAM::CopyToRDRAM.

This commit is contained in:
Sergey Lipskiy 2015-03-17 19:29:21 +06:00
parent 0ea5ae34e0
commit d4f0407b1f

View File

@ -971,8 +971,6 @@ bool DepthBufferToRDRAM::CopyToRDRAM( u32 _address) {
f32 * ptr_src = (f32*)pixelData;
u16 *ptr_dst = (u16*)(RDRAM + address);
const f32 scale = gSP.viewport.vscale[2] * 32768.0f;
const f32 trans = gSP.viewport.vtrans[2] * 32768.0f;
const u16 * const zLUT = depthBufferList().getZLUT();
for (u32 y = 0; y < VI.height; ++y) {