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_fb.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_e_fb.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_fb.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/d/actor/d_a_e_fb.cpp b/src/d/actor/d_a_e_fb.cpp index 807bf0a0c7..bde1aea835 100644 --- a/src/d/actor/d_a_e_fb.cpp +++ b/src/d/actor/d_a_e_fb.cpp @@ -32,29 +32,29 @@ daE_FB_HIO_c::daE_FB_HIO_c() { #if DEBUG void daE_FB_HIO_c::genMessage(JORMContext* ctext) { // "Frizzard (large)" - ctext->genLabel("フリザド(大)", 0x80000001, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genLabel("フリザド(大)", 0x80000001); // "Model size" - ctext->genSlider("モデルサイズ", &model_size, 0.0f, 10.0f, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("モデルサイズ", &model_size, 0.0f, 10.0f); // "Player detection range" - ctext->genSlider("プレイヤー発見距離", &player_detection_range, 0.0f, 10000.0f, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("プレイヤー発見距離", &player_detection_range, 0.0f, 10000.0f); // "Next attack wait time" - ctext->genSlider("次回攻撃待ち時間", &next_attack_waiting_time, 0, 1000, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("次回攻撃待ち時間", &next_attack_waiting_time, 0, 1000); // "Maximum rotation width" - ctext->genSlider("最大回転幅", &maximum_rotation_width, 0, 10000, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("最大回転幅", &maximum_rotation_width, 0, 10000); // "Minimum turning range" - ctext->genSlider("最小回転幅", &minimum_turning_range, 0, 10000, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("最小回転幅", &minimum_turning_range, 0, 10000); // "Stage rotation amplitude (speed)" - ctext->genSlider("階段用回転幅(速度)", &rotation_width_stairs, 0, 10000, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("階段用回転幅(速度)", &rotation_width_stairs, 0, 10000); // "Color Regi 1R" - ctext->genSlider("カラレジ1R", &color_register_1r, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("カラレジ1R", &color_register_1r, 0, 0xFF); // "Color Regi 1G" - ctext->genSlider("カラレジ1G", &color_register_1g, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("カラレジ1G", &color_register_1g, 0, 0xFF); // "Color Regi 1B" - ctext->genSlider("カラレジ1B", &color_register_1b, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("カラレジ1B", &color_register_1b, 0, 0xFF); // "Color Regi 1α " - ctext->genSlider("カラレジ1α ", &color_register_1a, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("カラレジ1α ", &color_register_1a, 0, 0xFF); // "Maximum rotation width" - ctext->genSlider("最大回転幅", &maximum_rotation_width_2, 0, 180, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 24); + ctext->genSlider("最大回転幅", &maximum_rotation_width_2, 0, 180); } #endif |
