mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 01:57:16 +00:00
Changed CINE to RTL when copy protection fails instead of Quit
svn-id: r32985
This commit is contained in:
parent
30b1a62e81
commit
1fd613afa6
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user