aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/engine.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp
index a17f1e5153..d5d5498384 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -183,6 +183,17 @@ void Engine::checkCD() {
"the data files to your hard disk instead.\n"
"See the README file for details.", "OK");
dialog.runModal();
+ } else {
+ // If we reached here, the game has audio tracks,
+ // it's not ran from the CD and the tracks have not
+ // been ripped.
+ GUI::MessageDialog dialog(
+ "This game has audio tracks in its disk. These\n"
+ "tracks need to be ripped from the disk using\n"
+ "an appropriate CD audio extracting tool in\n"
+ "order to listen to the game's music.\n"
+ "See the README file for details.", "OK");
+ dialog.runModal();
}
#endif
}