Fix out of bounds access

Fixes an issue where we would try to access an array out of the physics bounds
This commit is contained in:
David Markowitz 2023-05-30 17:30:50 -07:00
parent a43e03255c
commit 0ecc5d83c3

View File

@ -43,8 +43,8 @@ void dpGrid::Add(dpEntity* entity) {
if (cellX < 0) cellX = 0;
if (cellZ < 0) cellZ = 0;
if (cellX > NUM_CELLS) cellX = NUM_CELLS;
if (cellZ > NUM_CELLS) cellZ = NUM_CELLS;
if (cellX >= NUM_CELLS) cellX = NUM_CELLS - 1;
if (cellZ >= NUM_CELLS) cellZ = NUM_CELLS - 1;
//Add to cell:
m_Cells[cellX][cellZ].push_front(entity);
@ -87,8 +87,8 @@ void dpGrid::Delete(dpEntity* entity) {
if (oldCellX < 0) oldCellX = 0;
if (oldCellZ < 0) oldCellZ = 0;
if (oldCellX > NUM_CELLS) oldCellX = NUM_CELLS;
if (oldCellZ > NUM_CELLS) oldCellZ = NUM_CELLS;
if (oldCellX >= NUM_CELLS) oldCellX = NUM_CELLS - 1;
if (oldCellZ >= NUM_CELLS) oldCellZ = NUM_CELLS - 1;
m_Cells[oldCellX][oldCellZ].remove(entity);