Normalize safechk filename case

This commit is contained in:
J.Ingram 2024-08-25 23:11:35 -04:00
parent 3cc774daa1
commit 9964100b5e
3 changed files with 2 additions and 2 deletions

0
asm/SAFECHK.s → asm/safechk.s Executable file → Normal file
View File

2
build/linker_command_file.txt Executable file → Normal file
View File

@ -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?

2
build/post_build_checkup.py Executable file → Normal file
View File

@ -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)