summaryrefslogtreecommitdiff
path: root/src/shared/fallout3info.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-12-08 14:16:25 +0100
committerTannin <devnull@localhost>2013-12-08 14:16:25 +0100
commit9ee90a35dc3ebdbc76b18cbeb72995345ee37052 (patch)
tree9d64e222742eca0b01fbafb154b977b415bdf53d /src/shared/fallout3info.cpp
parentff78c6a014f8342024c3b271dbfca5ea0b4573f7 (diff)
- MO now applies a minimum to the nmm-compatibility field.
- bugfix: "visit on nexus" directed the browser to the servers meant for nmm - bugfix: url for "check all for updates" and "enorse/unendorse" were not constructed correctly
Diffstat (limited to 'src/shared/fallout3info.cpp')
-rw-r--r--src/shared/fallout3info.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/shared/fallout3info.cpp b/src/shared/fallout3info.cpp
index cc90d6fa..1808d1d9 100644
--- a/src/shared/fallout3info.cpp
+++ b/src/shared/fallout3info.cpp
@@ -153,9 +153,13 @@ std::wstring Fallout3Info::getSEName()
}
-std::wstring Fallout3Info::getNexusPage()
+std::wstring Fallout3Info::getNexusPage(bool nmmScheme)
{
- return L"http://nmm.nexusmods.com/fallout3";
+ if (nmmScheme) {
+ return L"http://nmm.nexusmods.com/fallout3";
+ } else {
+ return L"http://www.nexusmods.com/fallout3";
+ }
}