From 4cfa9eb5a1c68394892400f283c5be20d6f90615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joni=20V=C3=A4h=C3=A4m=C3=A4ki?= Date: Sat, 14 Jun 2014 23:02:27 +0300 Subject: [PATCH] GRIM/EMI: Remove bridge length check. --- engines/grim/sector.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/engines/grim/sector.cpp b/engines/grim/sector.cpp index 5d9a6989eda..d564bc7b193 100644 --- a/engines/grim/sector.cpp +++ b/engines/grim/sector.cpp @@ -383,10 +383,6 @@ Common::List Sector::getBridgesTo(Sector *sector) const { } } - if ((bridge.end() - bridge.begin()).getMagnitude() < 0.01f) { - it = bridges.erase(it); - continue; - } ++it; } }