mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-06 01:18:13 -04:00
Replace magic constants derived from framebuffer size (#3144)
This commit is contained in:
@@ -3995,9 +3995,9 @@ void dMeter_fmapHIO_c::genMessage(JORMContext* mctx) {
|
||||
mctx->genSlider("リージョン拡大表示範囲", &mRegionZoomRange, 1000.0, 1000000.0);
|
||||
mctx->genCheckBox("表示基準領域枠表示", (u8*)&mDisplayReferenceArea, 0x1);
|
||||
mctx->genCheckBox("スクロール範囲を表示基準", (u8*)&field_0x308, 0x1);
|
||||
mctx->genSlider("左上座標X", &mMapTopLeftPosX, 0.0, 608.0);
|
||||
mctx->genSlider("左上座標Y", &mMapTopLeftPosY, 0.0, 448.0);
|
||||
mctx->genSlider("領域幅", &mMapScale, 0.0, 608.0);
|
||||
mctx->genSlider("左上座標X", &mMapTopLeftPosX, 0.0, FB_WIDTH_BASE);
|
||||
mctx->genSlider("左上座標Y", &mMapTopLeftPosY, 0.0, FB_HEIGHT_BASE);
|
||||
mctx->genSlider("領域幅", &mMapScale, 0.0, FB_WIDTH_BASE);
|
||||
mctx->genLabel("\n*** スクロール速度境界 ***", 0);
|
||||
mctx->genSlider("0~遅", &mScrollSpeedSlowBound, 0.0, 1.0);
|
||||
mctx->genSlider("遅~速", &mScrollSpeedFastBound, 0.0, 1.0);
|
||||
|
||||
Reference in New Issue
Block a user