diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-12-27 17:26:30 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-12-27 17:26:30 +0100 |
commit | 7959b7fd1fa0b4dbe46485c111277eae3c374dde (patch) | |
tree | 43a023dcca34b29132f856615973812e3b197fb2 /src/collision/ColStore.cpp | |
parent | switch vehicle pipe default (diff) | |
download | re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar.gz re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar.bz2 re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar.lz re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar.xz re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.tar.zst re3-7959b7fd1fa0b4dbe46485c111277eae3c374dde.zip |
Diffstat (limited to 'src/collision/ColStore.cpp')
-rw-r--r-- | src/collision/ColStore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/collision/ColStore.cpp b/src/collision/ColStore.cpp index bca1e9b7..192c373d 100644 --- a/src/collision/ColStore.cpp +++ b/src/collision/ColStore.cpp @@ -173,7 +173,7 @@ CColStore::LoadCollision(const CVector2D &pos) if(GetBoundingBox(i).IsPointInside(pos) || bLoadAtSecondPosition && GetBoundingBox(i).IsPointInside(secondPosition, -119.0f) || - CGeneral::faststrcmp(GetColName(i), "yacht") == 0){ + strcmp(GetColName(i), "yacht") == 0){ wantThisOne = true; }else{ for (int j = 0; j < MAX_CLEANUP; j++) { |