summaryrefslogtreecommitdiff
path: root/src/profile.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-03-26 15:35:59 +0100
committerTannin <devnull@localhost>2014-03-26 15:35:59 +0100
commit28301e7486423a2ca0b5434d1538d36b05f4ac86 (patch)
tree65a422bac32ab42ea847a8479d2d06f1f700e5b3 /src/profile.cpp
parent2d0fab4482cea8a3472e2430f4746feeae1784ff (diff)
- improved NCC compatibility
- crude support for multi-volume archives - updated imageformats plugins - nxmhandler now puts the exe to the top of the list when registering an MO instance, even if it is already in the list - bugfix: WritePrivateProfileString hook attempted to access lpKeyName even when it is null
Diffstat (limited to 'src/profile.cpp')
-rw-r--r--src/profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profile.cpp b/src/profile.cpp
index 41a867c5..42358b7d 100644
--- a/src/profile.cpp
+++ b/src/profile.cpp
@@ -93,7 +93,7 @@ Profile::Profile(const QDir& directory)
GameInfo::instance().repairProfile(ToWString(m_Directory.absolutePath()));
if (!QFile::exists(getIniFileName())) {
- reportError(QObject::tr("\"%1\" is missing").arg(getIniFileName()));
+ reportError(QObject::tr("\"%1\" is missing or inaccessible").arg(getIniFileName()));
}
refreshModStatus();
}
@@ -231,7 +231,7 @@ void Profile::refreshModStatus()
{
QFile file(getModlistFileName());
if (!file.exists()) {
- throw MyException(QObject::tr("failed to find \"%1\"").arg(getModlistFileName()));
+ throw MyException(tr("\"%1\" is missing or inaccessible").arg(getModlistFileName()));
}
bool modStatusModified = false;