From 3cbb84d5ad44b1f3ac24096aefa401f618d06518 Mon Sep 17 00:00:00 2001
From: VoxelTek <53562267+VoxelTek@users.noreply.github.com>
Date: Wed, 16 Jul 2025 12:02:58 +1000
Subject: [PATCH] Raise max LoD value to 60
---
CONFIG/MainDlg.cpp | 2 +-
CONFIG/config.cpp | 2 +-
CONFIG/res/maindialog.ui | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/CONFIG/MainDlg.cpp b/CONFIG/MainDlg.cpp
index 4df74f16..47d3870a 100644
--- a/CONFIG/MainDlg.cpp
+++ b/CONFIG/MainDlg.cpp
@@ -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);
}
}
diff --git a/CONFIG/config.cpp b/CONFIG/config.cpp
index 6877900c..75b9a2e4 100644
--- a/CONFIG/config.cpp
+++ b/CONFIG/config.cpp
@@ -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;
}
diff --git a/CONFIG/res/maindialog.ui b/CONFIG/res/maindialog.ui
index f7480614..81bb6813 100644
--- a/CONFIG/res/maindialog.ui
+++ b/CONFIG/res/maindialog.ui
@@ -318,7 +318,7 @@ A higher setting will cause higher quality textures to be drawn regardless of di
- 50
+ 60
5