diff --git a/src/gameoblivion.cpp b/src/gameoblivion.cpp index 1b8fd95..93106af 100644 --- a/src/gameoblivion.cpp +++ b/src/gameoblivion.cpp @@ -51,7 +51,6 @@ QString GameOblivion::gameName() const QList GameOblivion::executables() const { return QList() - << ExecutableInfo("OBSE", findInGameFolder(feature()->loaderName())) << ExecutableInfo("Oblivion", findInGameFolder(binaryName())) << ExecutableInfo("Oblivion Launcher", findInGameFolder(getLauncherName())) << ExecutableInfo("Oblivion Mod Manager", findInGameFolder("OblivionModManager.exe")) @@ -63,10 +62,9 @@ QList GameOblivion::executables() const QList GameOblivion::executableForcedLoads() const { - //TODO Search game directory for OBSE DLLs return QList() - << ExecutableForcedLoadSetting("Oblivion.exe", "obse_1_2_416.dll").withForced() - << ExecutableForcedLoadSetting("TESConstructionSet.exe", "obse_editor_1_2.dll").withForced() + << ExecutableForcedLoadSetting("Oblivion.exe", "obse_1_2_416.dll").withForced().withEnabled() + << ExecutableForcedLoadSetting("TESConstructionSet.exe", "obse_editor_1_2.dll").withForced().withEnabled() ; }