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_obj_msima.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_obj_msima.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_msima.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/d/actor/d_a_obj_msima.cpp b/src/d/actor/d_a_obj_msima.cpp index fadf316c4a..db66eeb608 100644 --- a/src/d/actor/d_a_obj_msima.cpp +++ b/src/d/actor/d_a_obj_msima.cpp @@ -25,19 +25,15 @@ daObj_Msima_HIO_c::daObj_Msima_HIO_c() { #if DEBUG void daObj_Msima_HIO_c::genMessage(JORMContext* context) { // Magma Island - context->genLabel(" マグネ島 ", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18); + context->genLabel(" マグネ島 ", 0x80000001); // Size - context->genSlider("サイズ", (float*)(this + 8), 0.0, 3.0, 0, NULL, 0xffff, 0xffff, 0x200, - 0x18); + context->genSlider("サイズ", (float*)(this + 8), 0.0, 3.0); // Maximum Tilt Angle - context->genSlider("最大傾斜角(浮)", &mMaxTiltAngle, 0, 0x2000, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); + context->genSlider("最大傾斜角(浮)", &mMaxTiltAngle, 0, 0x2000); // Maximum Slope Angle (Up) - context->genSlider("最大傾斜角(上)", &mMaxSlopeAngle, 0, 0x2000, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); + context->genSlider("最大傾斜角(上)", &mMaxSlopeAngle, 0, 0x2000); // Basic Position - context->genSlider("基本位置", &mBasicPosition, -5000.0, 5000.0, 0, NULL, 0xffff, 0xffff, 0x200, - 0x18); + context->genSlider("基本位置", &mBasicPosition, -5000.0, 5000.0); } #endif |
