mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 21:45:19 -04:00
Use default parameter values in JORMContext calls where appropriate (#3057)
This commit is contained in:
@@ -32,11 +32,11 @@ daSpinLift_HIO_c::daSpinLift_HIO_c() {
|
||||
#if DEBUG
|
||||
void daSpinLift_HIO_c::genMessage(JORMContext* ctx) {
|
||||
// === Ascent ===
|
||||
ctx->genLabel("\n=== 上昇 ===", 0, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
|
||||
ctx->genLabel("\n=== 上昇 ===", 0);
|
||||
// Initial Speed
|
||||
ctx->genSlider("初速", &mInitialSpeed, 0.0f, 100.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
|
||||
ctx->genSlider("初速", &mInitialSpeed, 0.0f, 100.0f);
|
||||
// Vibration
|
||||
ctx->startComboBox("振動", &mVibration, 0, NULL, 0xffff, 0xffff, 0x100, 0x1a);
|
||||
ctx->startComboBox("振動", &mVibration);
|
||||
// Strength 1 - 8
|
||||
ctx->genComboBoxItem("強さ1", 1);
|
||||
ctx->genComboBoxItem("強さ2", 2);
|
||||
|
||||
Reference in New Issue
Block a user