diff options
author | Thierry Crozat | 2014-07-05 13:56:22 +0100 |
---|---|---|
committer | Thierry Crozat | 2014-07-05 13:56:47 +0100 |
commit | c4d685b0ac778ea1825bbc0a356f0b02d1e04c26 (patch) | |
tree | 3ecce7a9c1bfa0fd9e97d4e1940394c605f02df6 /engines | |
parent | b84d48abcad805ce7937999ed285238659e25512 (diff) | |
download | scummvm-rg350-c4d685b0ac778ea1825bbc0a356f0b02d1e04c26.tar.gz scummvm-rg350-c4d685b0ac778ea1825bbc0a356f0b02d1e04c26.tar.bz2 scummvm-rg350-c4d685b0ac778ea1825bbc0a356f0b02d1e04c26.zip |
SWORD1: Tweak MPEG-2 cutscenes error message
Beside making the message slightly better imho, it is also now
identical to the same message in BS2 and also more coherent with
the DXA message.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword1/animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp index 0257a805ff..b42b833304 100644 --- a/engines/sword1/animation.cpp +++ b/engines/sword1/animation.cpp @@ -558,7 +558,7 @@ MoviePlayer *makeMoviePlayer(uint32 id, SwordEngine *vm, Text *textMan, ResMan * Video::VideoDecoder *aviDecoder = new Video::AVIDecoder(12); return new MoviePlayer(vm, textMan, resMan, system, aviDecoder, kVideoDecoderMP2); #else - GUI::MessageDialog dialog(_("MPEG-2 cutscenes found but ScummVM has been built without MPEG-2"), _("OK")); + GUI::MessageDialog dialog(_("MPEG-2 cutscenes found but ScummVM has been built without MPEG-2 support"), _("OK")); dialog.runModal(); return 0; #endif |