mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 07:39:08 +00:00
HOPKINS: Fix shadowed variable not reported by MSVC
This commit is contained in:
parent
90084cfdce
commit
9f641c3d98
@ -945,7 +945,7 @@ int LinesManager::computeRouteIdx(int lineIdx, int dataIdx, int fromX, int fromY
|
||||
if (destX >= minLineX && destX <= maxLineX && destY >= minLineY && destY <= maxLineY) {
|
||||
int curY = destY;
|
||||
int linesIdxUp = -1;
|
||||
bool loopCond = false;
|
||||
loopCond = false;
|
||||
for (;;) {
|
||||
--curY;
|
||||
if (loopCond = checkCollisionLine(destX, curY, &foundDataIdx, &foundLineIdx, startLineIdx, endLineIdx))
|
||||
|
Loading…
Reference in New Issue
Block a user