Skip to content

Commit

Permalink
Fixed an issue with VOICE_AWB
Browse files Browse the repository at this point in the history
  • Loading branch information
Romarjosh Villamor committed Jan 9, 2016
1 parent c951a8c commit 8e24d75
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions setup_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@

DATA00_CPK = os.path.join("PSP_GAME", "USRDIR", "data00.cpk")
DATA01_CPK = os.path.join("PSP_GAME", "USRDIR", "data01.cpk")
VOICE_AWB = os.path.join("data00", "jp", "voice", "voice.awb")

DATA00_DIR = "data00"
DATA01_DIR = "data01"
Expand Down Expand Up @@ -209,7 +210,7 @@ def skip_setup(self):
def setup_workspace(self):
data00 = os.path.join(self.iso_dir, DATA00_CPK)
data01 = os.path.join(self.iso_dir, DATA01_CPK)
voice = os.path.join(self.iso_dir, VOICE_AWB)
voice = os.path.join(self.workspace_dir, VOICE_AWB)

self.generate_directories()

Expand Down Expand Up @@ -445,14 +446,6 @@ def copy_gfx(self):

shutil.copy(src, dest)

# flash = flash.strip()
# fla_name = flash[:7] # fla_###

#src2 = os.path.join(self.data01_dir, "jp", "flash", flash)
# dest = os.path.join(flash2_dir, "%s.gim" % fla_name)

# shutil.copy(src, dest)

progress.setValue(len(fla_list))

# We have a couple sets of files that aren't named the way we want them to
Expand Down

0 comments on commit 8e24d75

Please sign in to comment.