diff options
| author | Garrett Cox <garrettjcox@gmail.com> | 2023-01-25 16:27:11 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-25 17:27:11 -0500 |
| commit | 7a75fe84114b65ad58200f65c33dee3dfddf8b92 (patch) | |
| tree | 7633c03b8fe618bca423d0c4ae94e5e24245b6a3 /soh/src/code | |
| parent | 6d6c1c8c328eaaac957dcac1ef094259097a0085 (diff) | |
Add faster farores enhancement (#2394)
* Add faster farores enhancement
* Add preset entry
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/z_actor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_actor.c b/soh/src/code/z_actor.c index a86ad33f7..30ed71641 100644 --- a/soh/src/code/z_actor.c +++ b/soh/src/code/z_actor.c @@ -2311,7 +2311,7 @@ void Actor_DrawFaroresWindPointer(PlayState* play) { D_8015BC14 = 60; D_8015BC18 = 1.0f; } else if (D_8015BC14) { - D_8015BC14--; + D_8015BC14-= CVarGetInteger("gFastFarores", 0) ? 5 : 1; } else if (D_8015BC18 > 0.0f) { static Vec3f effectVel = { 0.0f, -0.05f, 0.0f }; static Vec3f effectAccel = { 0.0f, -0.025f, 0.0f }; |
