diff options
author | Strangerke | 2013-07-13 22:10:21 +0200 |
---|---|---|
committer | Strangerke | 2013-07-13 22:22:57 +0200 |
commit | 364cfaf9d264045d752280a7b3fe3d3ca3e42aa4 (patch) | |
tree | 7e3801c736fa12ffc0b505fd82a68748a79182d5 | |
parent | 8a098d75aa967b2361227df4a747b0eec223b098 (diff) | |
download | scummvm-rg350-364cfaf9d264045d752280a7b3fe3d3ca3e42aa4.tar.gz scummvm-rg350-364cfaf9d264045d752280a7b3fe3d3ca3e42aa4.tar.bz2 scummvm-rg350-364cfaf9d264045d752280a7b3fe3d3ca3e42aa4.zip |
MORTEVIELLE: Fix some typos identified by wjp
-rw-r--r-- | engines/mortevielle/mortevielle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mortevielle/mortevielle.cpp b/engines/mortevielle/mortevielle.cpp index 46c7c75fa3..2734f8cc93 100644 --- a/engines/mortevielle/mortevielle.cpp +++ b/engines/mortevielle/mortevielle.cpp @@ -210,14 +210,14 @@ Common::ErrorCode MortevielleEngine::initialise() { } /** - * Loads the contents of the Mort.dat data file + * Loads the contents of the mort.dat data file */ Common::ErrorCode MortevielleEngine::loadMortDat() { Common::File f; // Open the mort.dat file if (!f.open(MORT_DAT)) { - GUIErrorMessage("Could not locate Mort.dat file"); + GUIErrorMessage("Could not locate 'mort.dat'."); return Common::kReadingFailed; } @@ -231,7 +231,7 @@ Common::ErrorCode MortevielleEngine::loadMortDat() { // Check the version if (f.readByte() < MORT_DAT_REQUIRED_VERSION) { - GUIErrorMessage("The located mort.dat data file is too a version"); + GUIErrorMessage("The located mort.dat data file is too old, please download an updated version on scummvm.org"); return Common::kReadingFailed; } f.readByte(); // Minor version |