Changed CINE to RTL when copy protection fails instead of Quit

svn-id: r32985
This commit is contained in:
Christopher Page 2008-07-10 05:25:52 +00:00
parent 30b1a62e81
commit 1fd613afa6

View File

@ -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;
}