diff options
author | Eugene Sandulenko | 2006-11-13 16:42:34 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-11-13 16:42:34 +0000 |
commit | 9f74b031828b2a309b8194a0da9fdee85dec0cd7 (patch) | |
tree | 92a9ea61b749dbff3b2d29bf934e18aaf6f928ed | |
parent | 4f32bdba6c10fca069e462d2eca97e77e8680c20 (diff) | |
download | scummvm-rg350-9f74b031828b2a309b8194a0da9fdee85dec0cd7.tar.gz scummvm-rg350-9f74b031828b2a309b8194a0da9fdee85dec0cd7.tar.bz2 scummvm-rg350-9f74b031828b2a309b8194a0da9fdee85dec0cd7.zip |
Protection should not be bypassed for OS (and it didn't work well anyway)
svn-id: r24708
-rw-r--r-- | engines/cine/cine.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp index c850f0e4f0..65e5c1d218 100644 --- a/engines/cine/cine.cpp +++ b/engines/cine/cine.cpp @@ -146,11 +146,6 @@ static void initialize() { globalVars[i] = 0; } - // bypass protection - if (g_cine->getGameType() == GType_OS && !ConfMan.getBool("copy_protection")) { - globalVars[255] = 1; - } - for (i = 0; i < NUM_MAX_SCRIPT; i++) { scriptTable[i].ptr = NULL; scriptTable[i].size = 0; |