aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/morrowind
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/morrowind')
-rw-r--r--libs/game_bethesda/src/games/morrowind/gamemorrowind.cpp2
-rw-r--r--libs/game_bethesda/src/games/morrowind/morrowinddataarchives.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/libs/game_bethesda/src/games/morrowind/gamemorrowind.cpp b/libs/game_bethesda/src/games/morrowind/gamemorrowind.cpp
index faa3a3b..267d04c 100644
--- a/libs/game_bethesda/src/games/morrowind/gamemorrowind.cpp
+++ b/libs/game_bethesda/src/games/morrowind/gamemorrowind.cpp
@@ -179,7 +179,7 @@ QString GameMorrowind::gameNexusName() const
QStringList GameMorrowind::iniFiles() const
{
- return {"morrowind.ini"};
+ return {"Morrowind.ini"};
}
QStringList GameMorrowind::DLCPlugins() const
diff --git a/libs/game_bethesda/src/games/morrowind/morrowinddataarchives.cpp b/libs/game_bethesda/src/games/morrowind/morrowinddataarchives.cpp
index 57a5944..d0b3093 100644
--- a/libs/game_bethesda/src/games/morrowind/morrowinddataarchives.cpp
+++ b/libs/game_bethesda/src/games/morrowind/morrowinddataarchives.cpp
@@ -53,8 +53,8 @@ QStringList MorrowindDataArchives::archives(const MOBase::IProfile* profile) con
QString iniFile =
profile->localSettingsEnabled()
- ? QDir(profile->absolutePath()).absoluteFilePath("morrowind.ini")
- : gameDirectory().absoluteFilePath("morrowind.ini");
+ ? QDir(profile->absolutePath()).absoluteFilePath("Morrowind.ini")
+ : gameDirectory().absoluteFilePath("Morrowind.ini");
result.append(getArchives(iniFile));
return result;
@@ -65,7 +65,7 @@ void MorrowindDataArchives::writeArchiveList(MOBase::IProfile* profile,
{
QString iniFile =
profile->localSettingsEnabled()
- ? QDir(profile->absolutePath()).absoluteFilePath("morrowind.ini")
- : gameDirectory().absoluteFilePath("morrowind.ini");
+ ? QDir(profile->absolutePath()).absoluteFilePath("Morrowind.ini")
+ : gameDirectory().absoluteFilePath("Morrowind.ini");
setArchives(iniFile, before);
}