summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_e_sh.cpp
diff options
context:
space:
mode:
authorMax Roncace <me@caseif.net>2026-01-19 21:18:30 -0500
committerGitHub <noreply@github.com>2026-01-19 18:18:30 -0800
commit1fba6e13e56dd74ca73bcfabfe2756b520fd8d7b (patch)
treec8bcca0d8320b28abfd84e86a9c4a951e127823c /src/d/actor/d_a_e_sh.cpp
parentd83996c711a7aadd4f468614a34f53572423c3f1 (diff)
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_e_sh.cpp')
-rw-r--r--src/d/actor/d_a_e_sh.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/d/actor/d_a_e_sh.cpp b/src/d/actor/d_a_e_sh.cpp
index 22bae365c5..a2d7722926 100644
--- a/src/d/actor/d_a_e_sh.cpp
+++ b/src/d/actor/d_a_e_sh.cpp
@@ -46,16 +46,16 @@ daE_SH_HIO_c::daE_SH_HIO_c() {
#if DEBUG
void daE_SH_HIO_c::genMessage(JORMContext* ctx) {
// "Stalhound"
- ctx->genLabel(" スタルハウンド", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("基本サイズ", &mBaseSize, 0.0f, 3.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("歩き速度", &mWalkSpeed, 0.0f, 60.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("走り速度", &mRunSpeed, 0.0f, 60.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("チェック1", &mCheck1, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("チェック2", &mCheck2, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("チェック3", &mCheck3, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("チェック4", &mCheck4, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("チェック5", &mCheck5, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genCheckBox("時間無視", &mIgnoreTime, 1, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
+ ctx->genLabel(" スタルハウンド", 0x80000001);
+ ctx->genSlider("基本サイズ", &mBaseSize, 0.0f, 3.0f);
+ ctx->genSlider("歩き速度", &mWalkSpeed, 0.0f, 60.0f);
+ ctx->genSlider("走り速度", &mRunSpeed, 0.0f, 60.0f);
+ ctx->genSlider("チェック1", &mCheck1, 0.0f, 2000.0f);
+ ctx->genSlider("チェック2", &mCheck2, 0.0f, 2000.0f);
+ ctx->genSlider("チェック3", &mCheck3, 0.0f, 2000.0f);
+ ctx->genSlider("チェック4", &mCheck4, 0.0f, 2000.0f);
+ ctx->genSlider("チェック5", &mCheck5, 0.0f, 2000.0f);
+ ctx->genCheckBox("時間無視", &mIgnoreTime, 0x1);
}
#endif