Use default parameter values in JORMContext calls where appropriate (#3057)

This commit is contained in:
Max Roncace
2026-01-19 21:18:30 -05:00
committed by GitHub
parent d83996c711
commit 1fba6e13e5
134 changed files with 5369 additions and 6826 deletions
+5 -5
View File
@@ -42,11 +42,11 @@ daE_SM2_HIO_c::daE_SM2_HIO_c() {
#if DEBUG
void daE_SM2_HIO_c::genMessage(JORMContext* ctx) {
ctx->genCheckBox("合体しない", &merge_OFF, 1, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18);
ctx->genCheckBox("色調整する", &color_debug_ON, 1, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18);
ctx->genSlider("色調整R", &color_debug_R, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18);
ctx->genSlider("色調整G", &color_debug_G, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18);
ctx->genSlider("色調整B", &color_debug_B, 0, 0xFF, 0, NULL, 0xFFFF, 0xFFFF, 0x200, 0x18);
ctx->genCheckBox("合体しない", &merge_OFF, 0x1);
ctx->genCheckBox("色調整する", &color_debug_ON, 0x1);
ctx->genSlider("色調整R", &color_debug_R, 0, 0xFF);
ctx->genSlider("色調整G", &color_debug_G, 0, 0xFF);
ctx->genSlider("色調整B", &color_debug_B, 0, 0xFF);
}
#endif