summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_obj_ice_s.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_obj_ice_s.cpp
parentd83996c711a7aadd4f468614a34f53572423c3f1 (diff)
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_obj_ice_s.cpp')
-rw-r--r--src/d/actor/d_a_obj_ice_s.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/d/actor/d_a_obj_ice_s.cpp b/src/d/actor/d_a_obj_ice_s.cpp
index a8ca4fb33d..83bd1b70c8 100644
--- a/src/d/actor/d_a_obj_ice_s.cpp
+++ b/src/d/actor/d_a_obj_ice_s.cpp
@@ -37,11 +37,9 @@ daOBJ_ICE_S_HIO_c::daOBJ_ICE_S_HIO_c() {
#if DEBUG
void daOBJ_ICE_S_HIO_c::genMessage(JORMContext* ctx) {
- ctx->genLabel("氷の足場小", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
- ctx->genSlider("傾きの大きさ", &mSlopeMagnitude, 0.0f, 50000.0f, 0, NULL, 0xffff, 0xffff, 0x200,
- 0x18);
- ctx->genSlider("沈みの量", &mSinkingAmount, 0.0f, 1000.0f, 0, NULL, 0xffff, 0xffff, 0x200,
- 0x18);
+ ctx->genLabel("氷の足場小", 0x80000001);
+ ctx->genSlider("傾きの大きさ", &mSlopeMagnitude, 0.0f, 50000.0f);
+ ctx->genSlider("沈みの量", &mSinkingAmount, 0.0f, 1000.0f);
}
#endif