mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Better file output names
The adjuster now appends _adjusted to the pre-existing file name (before the extension) instead of a static output name.
This commit is contained in:
@@ -19,7 +19,7 @@ def adjust(args):
|
||||
else:
|
||||
sprite = None
|
||||
|
||||
outfilebase = 'ER_adjusted'
|
||||
outfilebase = os.path.basename(args.rom)[:-4] + '_adjusted'
|
||||
|
||||
if os.stat(args.rom).st_size == 2097152 and os.path.splitext(args.rom)[-1].lower() == '.sfc':
|
||||
rom = LocalRom(args.rom, False)
|
||||
|
Reference in New Issue
Block a user