summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-12-19 19:40:59 +0100
committerTannin <devnull@localhost>2013-12-19 19:40:59 +0100
commit35c9fe3e98cd4a81b114b0d9acb24727465d94b3 (patch)
tree33a32eefc8c1d1620f3282b33c10fa165d149d15 /src/mainwindow.cpp
parent82f7b09b40ffdbcee1ef275b499b6b8bcf0001bf (diff)
- bugfix: archive.dll could cause a crash, attempting to close an archive that failed to open
- bugfix: upon changing categories the mappings of deleted categories wasn't cleaned up which could cause an error message - bugfix: the number of esps/esms that can be loaded is actually 255 not 256 since the save game counts too - bugfix: "visit on nexus" from the modinfo dialog also lead to the wrong url
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 3a543e0b..b9300d00 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2203,7 +2203,7 @@ std::vector<unsigned int> MainWindow::activeProblems() const
if (m_UnloadedPlugins.size() != 0) {
problems.push_back(PROBLEM_PLUGINSNOTLOADED);
}
- if (m_PluginList.enabledCount() > 256) {
+ if (m_PluginList.enabledCount() > 255) {
problems.push_back(PROBLEM_TOOMANYPLUGINS);
}
return problems;
@@ -2236,7 +2236,7 @@ QString MainWindow::fullDescription(unsigned int key) const
return result;
} break;
case PROBLEM_TOOMANYPLUGINS: {
- return tr("The game doesn't allow more than 256 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or "
+ return tr("The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or "
"merge some plugins into one. You can find a guide here: <a href=\"http://wiki.step-project.com/Guide:Merging_Plugins\">http://wiki.step-project.com/Guide:Merging_Plugins</a>");
} break;
default: {