From 1fba6e13e56dd74ca73bcfabfe2756b520fd8d7b Mon Sep 17 00:00:00 2001 From: Max Roncace Date: Mon, 19 Jan 2026 21:18:30 -0500 Subject: Use default parameter values in JORMContext calls where appropriate (#3057) --- src/d/actor/d_a_obj_tombo.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/d/actor/d_a_obj_tombo.cpp') diff --git a/src/d/actor/d_a_obj_tombo.cpp b/src/d/actor/d_a_obj_tombo.cpp index 574a3cb274..4dcf667b72 100644 --- a/src/d/actor/d_a_obj_tombo.cpp +++ b/src/d/actor/d_a_obj_tombo.cpp @@ -22,16 +22,13 @@ public: #if DEBUG void genMessage(JORMContext* context) { // Golden dragonfly - context->genLabel("黄金蟲(トンボ)", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18); + context->genLabel("黄金蟲(トンボ)", 0x80000001); // Model Scale (male) - context->genSlider("モデルスケール(オス)", &mFemaleModelScale, 0.1f, 4.0f, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); + context->genSlider("モデルスケール(オス)", &mFemaleModelScale, 0.1f, 4.0f); // Model Scale (female) - context->genSlider("モデルスケール(メス)", &mMaleModelScale, 0.1f, 4.0f, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); + context->genSlider("モデルスケール(メス)", &mMaleModelScale, 0.1f, 4.0f); // btk speed - context->genSlider("btkスピード", &mBtkSpeed, 0.0f, 4.0f, 0, NULL, 0xffff, 0xffff, 0x200, - 0x18); + context->genSlider("btkスピード", &mBtkSpeed, 0.0f, 4.0f); } #endif -- cgit v1.2.3