Raise max LoD value to 60

This commit is contained in:
VoxelTek 2025-07-16 12:02:58 +10:00
parent 6e662617a6
commit 3cbb84d5ad
3 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ CMainDialog::CMainDialog(QWidget* pParent) : QDialog(pParent)
m_ui->modelQualityLowRadioButton->setEnabled(true);
m_ui->modelQualityMediumRadioButton->setEnabled(true);
m_ui->modelQualityHighRadioButton->setEnabled(true);
m_ui->maxLoDSlider->setMaximum(50);
m_ui->maxLoDSlider->setMaximum(60);
m_ui->maxActorsSlider->setMaximum(40);
}
}

View File

@ -243,7 +243,7 @@ bool CConfigApp::ValidateSettings()
is_modified = TRUE;
}
if (m_max_lod < 0.0f || m_max_lod > 5.0f) {
if (m_max_lod < 0.0f || m_max_lod > 6.0f) {
m_max_lod = 3.5f;
is_modified = TRUE;
}

View File

@ -318,7 +318,7 @@ A higher setting will cause higher quality textures to be drawn regardless of di
</sizepolicy>
</property>
<property name="maximum">
<number>50</number>
<number>60</number>
</property>
<property name="singleStep">
<number>5</number>