Skip to content

Commit

Permalink
Update version and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed Feb 5, 2022
1 parent 0b6e3f9 commit 95105a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ universal/data
universal/bootloader/build
generator/romfs/path.txt
generator/output
bannertool*
makerom*
2 changes: 1 addition & 1 deletion generator/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def get_title(rom, langnum: int) -> dict:
gamecodeint = int(hexlify(gamecode.encode()).decode(), 16)
uniqueid = f"0x{hex(gamecodeint ^ ((gamecodeint) >> 27))[3:8]}"
print("Running makerom...")
makeromarg = f"{cmdarg}makerom -f cia -target t -exefslogo -rsf data/build-cia.rsf -elf data/forwarder.elf -banner data/banner.bin -icon data/output.smdh -DAPP_ROMFS=romfs -major 0 -minor 1 -micro 0 -DAPP_VERSION_MAJOR=0 "
makeromarg = f"{cmdarg}makerom -f cia -target t -exefslogo -rsf data/build-cia.rsf -elf data/forwarder.elf -banner data/banner.bin -icon data/output.smdh -DAPP_ROMFS=romfs -major 1 -minor 1 -micro 0 -DAPP_VERSION_MAJOR=1 "
if args.output:
makeromarg += f'-o "{args.output[0]}" '
else:
Expand Down

0 comments on commit 95105a7

Please sign in to comment.