[MT04837,MT05070] fixed uninitialized memory in n64_rdp class [Oliver Stöneberg]

This commit is contained in:
Oliver Stöneberg 2013-02-11 16:06:40 +00:00
parent 1a0c7eceea
commit 55b4f41cf2

View File

@ -426,6 +426,8 @@ class n64_rdp : public poly_manager<UINT32, rdp_poly_state, 8, 32000>
m_norm_point_rom[i] = (normpoint[(i << 1) + 1] << 8) | normpoint[i << 1];
m_norm_slope_rom[i] = (normslope[(i << 1) + 1] << 8) | normslope[i << 1];
}
memset(m_tiles, 0, 8 * sizeof(N64Tile));
}
void ProcessList();