diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-12 16:30:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 16:30:44 -0400 |
| commit | 2eaf012e4f8749bf83a6dc00cf1900f64663a33f (patch) | |
| tree | e4b512b394015bb6ab04946c0b59f37c7f3066a2 /src/d/actor/d_a_ship.cpp | |
| parent | c5878bf0687e54c23f72e72a1514fe7221b1350e (diff) | |
Fix some version differences (#852)
* Fix some version differences
* Found real inline name for checkBowMiniGame
Diffstat (limited to 'src/d/actor/d_a_ship.cpp')
| -rw-r--r-- | src/d/actor/d_a_ship.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/actor/d_a_ship.cpp b/src/d/actor/d_a_ship.cpp index b0d3a373..a7a6a61b 100644 --- a/src/d/actor/d_a_ship.cpp +++ b/src/d/actor/d_a_ship.cpp @@ -853,7 +853,7 @@ f32 daShip_c::getWaterY() { waterY = m03F4; #else daPy_lk_c* link = daPy_getPlayerLinkActorClass(); - if (link && link->mDemo.getDemoMode() == daPy_demo_c::DEMO_UNK_068_e ) { + if (link && link->checkBowMiniGame()) { waterY = 0.0f; } else { |
