Skip to content

Commit

Permalink
scripts: waifulib: psvita: add missing cprogram attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Jan 31, 2025
1 parent aa23196 commit ff8d17a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/waifulib/psvita.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class mkvpk(Task.Task):
color = 'CYAN'
run_str = '${PACKVPK} -s ${SFOFILE} -b ${FSELFFILE} -a ${SCESYS}=sce_sys ${TGT}'

@TaskGen.feature('cxxprogram')
@TaskGen.feature('cxxprogram', 'cprogram')
@TaskGen.after_method('apply_link')
def apply_velf(self):
elffile = self.link_task.outputs[0]
Expand All @@ -64,7 +64,7 @@ def apply_velf(self):
self.velf_task = self.create_task('mkvelf', in_nodes)
self.velf_task.set_outputs(out_nodes)

@TaskGen.feature('cxxprogram')
@TaskGen.feature('cxxprogram', 'cprogram')
@TaskGen.after_method('apply_velf')
def apply_fself(self):
velffile = self.velf_task.outputs[0]
Expand All @@ -78,7 +78,7 @@ def apply_fself(self):
self.fself_task = self.create_task('mkfself', in_nodes)
self.fself_task.set_outputs(out_nodes)

@TaskGen.feature('cxxprogram')
@TaskGen.feature('cxxprogram', 'cprogram')
@TaskGen.after_method('apply_fself')
def apply_sfo(self):
fselffile = self.fself_task.outputs[0]
Expand Down

0 comments on commit ff8d17a

Please sign in to comment.