mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-28 13:57:37 +00:00
Raise max LoD value to 60
This commit is contained in:
parent
6e662617a6
commit
3cbb84d5ad
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user