summaryrefslogtreecommitdiff
path: root/src/shared/gameinfo.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-10-25 14:49:42 +0200
committerTannin <devnull@localhost>2013-10-25 14:49:42 +0200
commit8c0b309bdee2527fab66b00b34171ef18f5055bf (patch)
tree9e0d4000573046df8ae7e060b665365f71ed74a6 /src/shared/gameinfo.cpp
parentbc7c42dbe8dd85a77a2eb8c1d094c77aa5cb7b1f (diff)
- Option to choose edition of the game. Currently only relevant for FO3 because FO3 GOTY is its own app
- applications that aren't in the executables list can again be started from the command line - references to missing categories are now removed from mods - bugfix: integrated fomod installer didn't update description and picture on some constellations of Windows version and theme
Diffstat (limited to 'src/shared/gameinfo.cpp')
-rw-r--r--src/shared/gameinfo.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shared/gameinfo.cpp b/src/shared/gameinfo.cpp
index f74e52b4..00bb42fd 100644
--- a/src/shared/gameinfo.cpp
+++ b/src/shared/gameinfo.cpp
@@ -30,6 +30,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <shlobj.h>
#include <sstream>
#include <cassert>
+#include <boost/assign.hpp>
namespace MOShared {
@@ -184,6 +185,11 @@ bool GameInfo::requiresSteam() const
return FileExists(getGameDirectory().append(L"\\steam_api.dll"));
}
+std::vector<std::wstring> GameInfo::getSteamVariants() const
+{
+ return boost::assign::list_of(L"Regular");
+}
+
std::wstring GameInfo::getLocalAppFolder() const
{