summaryrefslogtreecommitdiff
path: root/src/d/d_cc_uty.cpp
diff options
context:
space:
mode:
authorCarco_21 <144170194+carter-ktb21@users.noreply.github.com>2025-10-14 11:01:24 -0400
committerGitHub <noreply@github.com>2025-10-14 18:01:24 +0300
commite5377068fc6938e15ad6ebdcac625aa85c779902 (patch)
treee21804b069a71c9a06838e3e353642cfba97c960 /src/d/d_cc_uty.cpp
parentd3c3fd09de1da021efff5f668ad0fc934565f6b2 (diff)
d_a_e_sf matching (#2734)
* Almost matching * matching * cleanup and variable naming * pr cleanup
Diffstat (limited to 'src/d/d_cc_uty.cpp')
-rw-r--r--src/d/d_cc_uty.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_cc_uty.cpp b/src/d/d_cc_uty.cpp
index 823ed6a3f6..459893edd5 100644
--- a/src/d/d_cc_uty.cpp
+++ b/src/d/d_cc_uty.cpp
@@ -105,7 +105,7 @@ u16 cc_pl_cut_bit_get() {
} else if (player_p->getCutType() == daPy_py_c::CUT_TYPE_FINISH_VERTICAL) {
bit = 0x40;
} else if (player_p->getCutType() == daPy_py_c::CUT_TYPE_TURN_RIGHT ||
- player_p->getCutType() == 9 || player_p->getCutType() == 43 ||
+ player_p->getCutType() == 9 || player_p->getCutType() == daPy_py_c::CUT_TYPE_HORSE_TURN ||
player_p->getCutType() == daPy_py_c::CUT_TYPE_LARGE_TURN_RIGHT)
{
bit = 0x80;
@@ -115,7 +115,7 @@ u16 cc_pl_cut_bit_get() {
bit = 0x800;
} else if (player_p->getCutType() == daPy_py_c::CUT_TYPE_JUMP) {
bit = 0x100;
- } else if (player_p->getCutType() == 40 || player_p->getCutType() == 41) {
+ } else if (player_p->getCutType() == daPy_py_c::CUT_TYPE_UNK_28 || player_p->getCutType() == daPy_py_c::CUT_TYPE_GUARD_ATTACK) {
bit = 0x400;
}