Normalize safechk filename case
This commit is contained in:
parent
3cc774daa1
commit
9964100b5e
|
|
@ -395,7 +395,7 @@ overlay_bss group file("{{OBJ_DIR}}\{{OVERLAY}}_{{OVERLAY_SUFFIX}}_bss.bin")
|
|||
include "{{OBJ_DIR}}\overlays\change\overlay.obj"
|
||||
include "{{OBJ_DIR}}\overlays\change\Onoda\change\change.obj"
|
||||
include "{{OBJ_DIR}}\overlays\change\Onoda\change\safety.obj"
|
||||
include "{{OBJ_DIR}}\SAFECHK.OBJ", overlay
|
||||
include "{{OBJ_DIR}}\safechk.obj", overlay
|
||||
include "{{OBJ_DIR}}\overlays\change\Onoda\change\met_logo.obj"
|
||||
|
||||
; PSYQ - TODO: how to use inclib effectively here?
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ def orphaned_files():
|
|||
s = s.replace('\\', '/')
|
||||
obj = s.replace('../asm/', '../obj/').replace('.s', '.obj')
|
||||
obj2 = s.replace('../asm/', '{{OBJ_DIR}}/').replace('.s', '.obj')
|
||||
if obj not in included_asms and obj2 not in objs and 'snake_vr' not in s and 'SAFECHK' not in s:
|
||||
if obj not in included_asms and obj2 not in objs and 'snake_vr' not in s and 'safechk' not in s:
|
||||
if not errored:
|
||||
print("orphaned files detected, delete them with:")
|
||||
print(RM_ORPHAN_COMMAND, s)
|
||||
|
|
|
|||
Loading…
Reference in New Issue