diff options
author | pixel <pixel> | 2003-12-25 15:35:09 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-12-25 15:35:09 +0000 |
commit | 6ccf74171a2b112e0b3300ecc0d0a09677faf4ee (patch) | |
tree | d7668aeef7c1cb7b5b210c6895229afad699d298 /PE | |
parent | ce3139feccd9be24e6b506e75b085ac4b1e5df4c (diff) |
Fixing lua...
Diffstat (limited to 'PE')
-rw-r--r-- | PE/pe-hack.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PE/pe-hack.lua b/PE/pe-hack.lua index 848ac81..3148cb9 100644 --- a/PE/pe-hack.lua +++ b/PE/pe-hack.lua @@ -1,5 +1,5 @@ -- Parasite Eve's french patch --- $Id: pe-hack.lua,v 1.5 2003-12-25 15:33:57 pixel Exp $ +-- $Id: pe-hack.lua,v 1.6 2003-12-25 15:35:09 pixel Exp $ function mainpatch() local dirent, pvd, root, is_cd1, is_cd2, slusname, fmvdir, systemcnfstring, inslus, slus, peimg, pesect, tim, startsect, fmvdirtree, xadirtree, falsesect, i @@ -12,14 +12,14 @@ function mainpatch() print "Identifying CD..." if (dirent.id == "SLUS_006.62;1") then print "CD is Parasite Eve CD1" - pvd.volid = "PARASITE_EVE_FRANCAIS_CD1" + pvd.volid = "PE-FR-CD1" slusname = "PE-FR.CD1" fmvdir = "FMV1" is_cd1 = true is_cd2 = false else print "CD is Parasite Eve CD2" - pvd.volid = "PARASITE_EVE_FRANCAIS_CD2" + pvd.volid = "PE-FR-CD2" slusname = "PE-FR.CD2" fmvdir = "FMV2" is_cd1 = false |