From 1fd613afa681fc3a81d9ed3f5c6fb34513ca2fd7 Mon Sep 17 00:00:00 2001 From: Christopher Page Date: Thu, 10 Jul 2008 05:25:52 +0000 Subject: Changed CINE to RTL when copy protection fails instead of Quit svn-id: r32985 --- engines/cine/prc.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engines/cine/prc.cpp b/engines/cine/prc.cpp index 10ebd87cd6..42dcf1b491 100644 --- a/engines/cine/prc.cpp +++ b/engines/cine/prc.cpp @@ -25,6 +25,7 @@ #include "common/endian.h" +#include "common/events.h" #include "cine/cine.h" #include "cine/various.h" @@ -53,7 +54,9 @@ void loadPrc(const char *pPrcName) { // This is copy protection. Used to hang the machine if (!scumm_stricmp(pPrcName, "L201.ANI")) { - g_cine->quitGame(); + Common::Event event; + event.type = Common::EVENT_RTL; + g_system->getEventManager()->pushEvent(event); return; } -- cgit v1.2.3