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
+3 -5
View File
@@ -32,11 +32,9 @@ daObj_KuwHIO_c::daObj_KuwHIO_c() {
#if DEBUG
void daObj_KuwHIO_c::genMessage(JORMContext* ctx) {
ctx->genLabel("黄金蟲(カブト)", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("モデルスケール(オス)", &mMaleModelScale, 0.1f, 4.0f, 0, NULL, 0xffff, 0xffff,
0x200, 0x18);
ctx->genSlider("モデルスケール(メス)", &mFemaleModelScale, 0.1f, 4.0f, 0, NULL, 0xffff, 0xffff,
0x200, 0x18);
ctx->genLabel("黄金蟲(カブト)", 0x80000001);
ctx->genSlider("モデルスケール(オス)", &mMaleModelScale, 0.1f, 4.0f);
ctx->genSlider("モデルスケール(メス)", &mFemaleModelScale, 0.1f, 4.0f);
}
#endif