diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2019-10-25 18:39:26 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2019-10-26 13:05:00 +0200 |
commit | 8808e6fdfe5604022a64e72df3ee60d8ed10e9d6 (patch) | |
tree | 02a3e0e3dca2f3d52cb45017ad50d627ffec9841 /src/core/FileLoader.cpp | |
parent | fef3b5f978856c5ebabcdc27340de163173f3883 (diff) |
Fixes for aap review (audio8)
Diffstat (limited to 'src/core/FileLoader.cpp')
-rw-r--r-- | src/core/FileLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/FileLoader.cpp b/src/core/FileLoader.cpp index f7b69dea..6f3b0971 100644 --- a/src/core/FileLoader.cpp +++ b/src/core/FileLoader.cpp @@ -738,7 +738,7 @@ CFileLoader::LoadVehicleObject(const char *line) if(strncmp(type, "car", 4) == 0){ mi->m_wheelId = misc; mi->m_wheelScale = wheelScale; - mi->m_vehicleType = VEHICLE_TYPE_AUTOMOBILE; + mi->m_vehicleType = VEHICLE_TYPE_CAR; }else if(strncmp(type, "boat", 5) == 0){ mi->m_vehicleType = VEHICLE_TYPE_BOAT; }else if(strncmp(type, "train", 6) == 0){ |