From 9759b80b789726eb5875ce1642848f224d002fdd Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 31 Jan 2025 09:10:39 +0300 Subject: [PATCH] scripts: waifulib: psvita: set default title id and app name to just test --- scripts/waifulib/psvita.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/waifulib/psvita.py b/scripts/waifulib/psvita.py index cd3815030..7c5dcb904 100644 --- a/scripts/waifulib/psvita.py +++ b/scripts/waifulib/psvita.py @@ -83,8 +83,8 @@ def apply_fself(self): def apply_sfo(self): fselffile = self.fself_task.outputs[0] in_nodes = [fselffile] - scetitleid = getattr(self, 'title_id', None) - sceappname = getattr(self, 'app_name', None) + scetitleid = getattr(self, 'title_id', 'TEST10000') + sceappname = getattr(self, 'app_name', 'test') sfofile = fselffile.change_ext('.sfo') out_nodes = [sfofile]