aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Crozat2014-07-05 13:56:22 +0100
committerThierry Crozat2014-07-05 13:56:47 +0100
commitc4d685b0ac778ea1825bbc0a356f0b02d1e04c26 (patch)
tree3ecce7a9c1bfa0fd9e97d4e1940394c605f02df6
parentb84d48abcad805ce7937999ed285238659e25512 (diff)
downloadscummvm-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.
-rw-r--r--engines/sword1/animation.cpp2
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