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/d_menu_fmap_map.cpp | |
| parent | d83996c711a7aadd4f468614a34f53572423c3f1 (diff) | |
Use default parameter values in JORMContext calls where appropriate (#3057)
Diffstat (limited to 'src/d/d_menu_fmap_map.cpp')
| -rw-r--r-- | src/d/d_menu_fmap_map.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/d/d_menu_fmap_map.cpp b/src/d/d_menu_fmap_map.cpp index 7f141181bd..fb51845497 100644 --- a/src/d/d_menu_fmap_map.cpp +++ b/src/d/d_menu_fmap_map.cpp @@ -287,14 +287,14 @@ dMfm_HIO_c::dMfm_HIO_c() { void dMfm_HIO_c::genMessage(JORMContext* mctx) { // DEBUG NONMATCHING - mctx->genLabel("フィールドマップ パスマップ 調整項目", 0, 0, NULL, -1, -1, 512, 24); - mctx->genButton("初期化", 0x4000005, 0, NULL, -1, -1, 512, 24); - mctx->genButton("HOSTIO順テキストファイル書き出し", 0x4000006, 0, NULL, -1, -1, 512, 24); - mctx->genButton("バイナリ順テキスト書き出し", 0x4000007, 0, NULL, -1, -1, 512, 24); - mctx->genButton("バイナリファイル書き出し", 0x4000008, 0, NULL, -1, -1, 512, 24); - mctx->genButton("バイナリファイル読み込み", 0x4000009, 0, NULL, -1, -1, 512, 24); - mctx->genButton("バイナリダンプ", 0x400000a, 0, NULL, -1, -1, 512, 24); - mctx->genLabel("■■リソースに入らない調整項目■■", 0, 0, NULL, -1, -1, 512, 24); + mctx->genLabel("フィールドマップ パスマップ 調整項目", 0); + mctx->genButton("初期化", 0x4000005); + mctx->genButton("HOSTIO順テキストファイル書き出し", 0x4000006); + mctx->genButton("バイナリ順テキスト書き出し", 0x4000007); + mctx->genButton("バイナリファイル書き出し", 0x4000008); + mctx->genButton("バイナリファイル読み込み", 0x4000009); + mctx->genButton("バイナリダンプ", 0x400000a); + mctx->genLabel("■■リソースに入らない調整項目■■", 0); field_0xc.gen(mctx); } |
