diff options
| author | Max Roncace <me@caseif.net> | 2026-01-19 21:18:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-19 18:18:30 -0800 |
| commit | 1fba6e13e56dd74ca73bcfabfe2756b520fd8d7b (patch) | |
| tree | c8bcca0d8320b28abfd84e86a9c4a951e127823c /src/d/actor/d_a_e_rdy.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_e_rdy.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_rdy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_e_rdy.cpp b/src/d/actor/d_a_e_rdy.cpp index 1b3d2202a8..d8d86885dc 100644 --- a/src/d/actor/d_a_e_rdy.cpp +++ b/src/d/actor/d_a_e_rdy.cpp @@ -250,9 +250,9 @@ void daE_RDY_HIO_c::genMessage(JORMContext* context) { context->genSlider("飛びZ", &field_0x44, 0.0f, 50.0f); context->genSlider("飛びY", &field_0x4c, 0.0f, 50.0f); context->genSlider("飛びG", &field_0x40, 0.0f, 20.0f); - context->genCheckBox("不死身", &field_0x39, 1); - context->genCheckBox("目ポリゴン", &mDrawEyeModel, 1); - context->genCheckBox("一撃必殺", &field_0x3b, 1); + context->genCheckBox("不死身", &field_0x39, 0x1); + context->genCheckBox("目ポリゴン", &mDrawEyeModel, 0x1); + context->genCheckBox("一撃必殺", &field_0x3b, 0x1); context->genSlider("一騎(ダ)サイズ", &field_0x3c, 0.0f, 150.0f); } #endif |
