diff options
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/prc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/cine/prc.cpp b/engines/cine/prc.cpp index 845cec69ad..bb7fbfc9d0 100644 --- a/engines/cine/prc.cpp +++ b/engines/cine/prc.cpp @@ -76,6 +76,12 @@ void loadPrc(const char *pPrcName) { } } + // This is copy protection. Used to hang the machine + if (!scumm_stricmp(pPrcName, "L201.ANI")) { + exitEngine = 1; + return; + } + checkDataDisk(-1); if ((g_cine->getGameType() == Cine::GType_FW) && (!scumm_stricmp(pPrcName, BOOT_PRC_NAME) || !scumm_stricmp(pPrcName, "demo.prc"))) { |