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_hp.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_e_hp.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_hp.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/d/actor/d_a_e_hp.cpp b/src/d/actor/d_a_e_hp.cpp index 2443bb8a49..f51abeba26 100644 --- a/src/d/actor/d_a_e_hp.cpp +++ b/src/d/actor/d_a_e_hp.cpp @@ -85,15 +85,12 @@ daE_HP_HIO_c::daE_HP_HIO_c() { #if DEBUG void daE_HP_HIO_c::genMessage(JORMContext* ctx) { // General-purpose Poe - ctx->genLabel("汎用ポゥ", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18); - ctx->genSlider("モデルサイズ", &modelSize, 0.0, 10.0, 0, NULL, 0xffff, 0xffff, 0x200, 0x18); - ctx->genSlider("攻撃終了後待ち時間", &waitTimeAfterAttack, 0, 1000, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); - ctx->genSlider("復活時間", &resurrectionTime, 0, 1000, 0, NULL, 0xffff, 0xffff, 0x200, 0x18); - ctx->genSlider("接近後攻撃しない時間", &attackDelayOnApproach, 0, 0xfe, 0, NULL, 0xffff, 0xffff, - 0x200, 0x18); - ctx->genCheckBox("範囲表示(FINALでは不可)", &rangeDisplay, 1, 0, NULL, 0xffff, 0xffff, 0x200, - 0x18); + ctx->genLabel("汎用ポゥ", 0x80000001); + ctx->genSlider("モデルサイズ", &modelSize, 0.0, 10.0); + ctx->genSlider("攻撃終了後待ち時間", &waitTimeAfterAttack, 0, 1000); + ctx->genSlider("復活時間", &resurrectionTime, 0, 1000); + ctx->genSlider("接近後攻撃しない時間", &attackDelayOnApproach, 0, 0xfe); + ctx->genCheckBox("範囲表示(FINALでは不可)", &rangeDisplay, 0x1); } #endif |
