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_mg_rod.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/actor/d_a_mg_rod.cpp')
| -rw-r--r-- | src/d/actor/d_a_mg_rod.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_mg_rod.cpp b/src/d/actor/d_a_mg_rod.cpp index 77e43ed910..9acbaea735 100644 --- a/src/d/actor/d_a_mg_rod.cpp +++ b/src/d/actor/d_a_mg_rod.cpp @@ -67,8 +67,8 @@ dmg_rod_HIO_c::dmg_rod_HIO_c() { #if DEBUG void dmg_rod_HIO_c::genMessage(JORMContext* ctx) { // Fishing System - ctx->genLabel(" 釣りシステム ", 0x80000001, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18); - ctx->startComboBox("強制魚メッセージ出力", &force_fish_msg_output, 0, NULL, 0xFFFF, 0xFFFF, 0x100, 0x1A); + ctx->genLabel(" 釣りシステム ", 0x80000001); + ctx->startComboBox("強制魚メッセージ出力", &force_fish_msg_output); ctx->genComboBoxItem("通常", 0); // Normal ctx->genComboBoxItem("バス", 1); // Bass ctx->genComboBoxItem("ドジョウ", 2); //Loach |
