Warn if a Game Title ID is manually specified

It already re-rolls the title ID in this case, if no title ID was manually provided.
This commit is contained in:
rlaphoenix
2022-11-12 09:06:54 +00:00
parent b7cf518301
commit 5c8623aefe
+2
View File
@@ -96,6 +96,8 @@ def build(
if id_ in system_title_ids.ALL_SYSTEM:
log.critical(f"The Title ID \"{id_}\" is a reserved System Title! Using it is unsafe!")
return 2
if id_ in system_title_ids.game_title_ids:
log.warning(f"The Title ID \"{id_}\" is already used by \"{system_title_ids.game_title_ids[id_]}\".")
else:
id_ = "0100000000000000"
while id_ in system_title_ids.ALL: