diff --git a/src/rom_detective/item.py b/src/rom_detective/item.py index 8cf36aa..1893c6e 100644 --- a/src/rom_detective/item.py +++ b/src/rom_detective/item.py @@ -134,7 +134,7 @@ def subclass_init(self) -> None: self.g_id = self.source.split('\\')[-1] self.source += r'\PS3_GAME\USRDIR\EBOOT.BIN' try: - self.filename = const.DATABASES.gameslist_ps3[self.g_id] if not self.filename else self.filename + self.filename = f'{const.DATABASES.gameslist_ps3[self.g_id]}.BIN' if not self.filename else self.filename except KeyError: print(f'Warning (PS3): {self.g_id} is not a valid PS3 ID and will be blacklisted') self.clean_brackets = False