diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-30 12:48:01 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-05-02 14:13:09 +0200 |
commit | d23b2c423e5811cf6e9de28cbf8490de32ea4fb5 (patch) | |
tree | 0240b530a05679dc6d629c414f59bf56588a93b2 /src/control/Garages.cpp | |
parent | Merge pull request #502 from rollschuh2282/patch-1 (diff) | |
download | re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar.gz re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar.bz2 re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar.lz re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar.xz re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.tar.zst re3-d23b2c423e5811cf6e9de28cbf8490de32ea4fb5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Garages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Garages.cpp b/src/control/Garages.cpp index fd18f4cf..97cb8303 100644 --- a/src/control/Garages.cpp +++ b/src/control/Garages.cpp @@ -2164,7 +2164,7 @@ int32 CGarages::FindMaxNumStoredCarsForGarage(eGarageType type) return 0; } -bool CGarages::IsPointWithinHideOutGarage(CVector& point) +bool CGarages::IsPointWithinHideOutGarage(Const CVector& point) { for (int i = 0; i < NUM_GARAGES; i++) { switch (aGarages[i].m_eGarageType) { @@ -2180,7 +2180,7 @@ bool CGarages::IsPointWithinHideOutGarage(CVector& point) return false; } -bool CGarages::IsPointWithinAnyGarage(CVector& point) +bool CGarages::IsPointWithinAnyGarage(Const CVector& point) { for (int i = 0; i < NUM_GARAGES; i++) { switch (aGarages[i].m_eGarageType) { |