diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-10-18 15:26:20 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-10-18 15:26:20 +0200 |
commit | 23220d799c0a44b75f6863848124852cc98b559e (patch) | |
tree | 3307997f8030a2d3cd73fa81dce5ff6fd38f59d8 /src/vehicles | |
parent | Merge branch 'master' of github.com:GTAmodding/re3 into master (diff) | |
download | re3-23220d799c0a44b75f6863848124852cc98b559e.tar re3-23220d799c0a44b75f6863848124852cc98b559e.tar.gz re3-23220d799c0a44b75f6863848124852cc98b559e.tar.bz2 re3-23220d799c0a44b75f6863848124852cc98b559e.tar.lz re3-23220d799c0a44b75f6863848124852cc98b559e.tar.xz re3-23220d799c0a44b75f6863848124852cc98b559e.tar.zst re3-23220d799c0a44b75f6863848124852cc98b559e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index 66452477..fa92bbbe 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -1,4 +1,4 @@ -#include "common.h" +#include "common.h" #include "main.h" #include "General.h" @@ -3746,7 +3746,6 @@ CAutomobile::ProcessOpenDoor(uint32 component, uint32 anim, float time) case ANIM_CAR_ROLLDOOR_LOW: ProcessDoorOpenCloseAnimation(this, component, door, time, 0.1f, 0.6f, 0.95f); break; - break; case ANIM_CAR_GETOUT_LHS: case ANIM_CAR_GETOUT_LOW_LHS: case ANIM_CAR_GETOUT_RHS: @@ -3760,6 +3759,7 @@ CAutomobile::ProcessOpenDoor(uint32 component, uint32 anim, float time) case ANIM_CAR_PULLOUT_RHS: case ANIM_CAR_PULLOUT_LOW_RHS: OpenDoor(component, door, 1.0f); + break; case ANIM_COACH_OPEN_L: case ANIM_COACH_OPEN_R: ProcessDoorOpenAnimation(this, component, door, time, 0.66f, 0.8f); |