Fix for bug #882083 (COMI: CD change cancel button)

svn-id: r12744
This commit is contained in:
Max Horn 2004-02-05 22:39:13 +00:00
parent f98cc6f02e
commit 7038f2f6cf
3 changed files with 7 additions and 7 deletions

View file

@ -229,12 +229,12 @@ void ScummEngine::askForDisk(const char *filename, int disknum) {
_imuseDigital->stopAllSounds(true);
#ifdef MACOSX
sprintf(buf, "Cannot find file: '%s'\nPlease insert disc %d.\nHit OK to retry, Cancel to exit", filename, disknum);
sprintf(buf, "Cannot find file: '%s'\nPlease insert disc %d.\nPress OK to retry, Quit to exit", filename, disknum);
#else
sprintf(buf, "Cannot find file: '%s'\nInsert disc %d into drive %s\nHit OK to retry, Cancel to exit", filename, disknum, getGameDataPath());
sprintf(buf, "Cannot find file: '%s'\nInsert disc %d into drive %s\nPress OK to retry, Quit to exit", filename, disknum, getGameDataPath());
#endif
result = displayError(true, buf);
result = displayError("Quit", buf);
if (result == 2)
error("Cannot find file: '%s'", filename);
} else {