From d32bd99e23068c4ac76eeb57be2e66690a4788dd Mon Sep 17 00:00:00 2001 From: Rainchus Date: Fri, 5 Apr 2024 13:34:39 -0500 Subject: [PATCH] fix accidental reverting of matching files in configure.py --- configure.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.py b/configure.py index f8ebc4dc..859c3d18 100644 --- a/configure.py +++ b/configure.py @@ -1055,7 +1055,7 @@ config.libs = [ Object(Matching, "REL/executor.c"), Object(NonMatching, "REL/resultDll/main.c"), Object(NonMatching, "REL/resultDll/battle.c"), - Object(NonMatching, "REL/resultDll/datalist.c"), + Object(Matching, "REL/resultDll/datalist.c"), } ), Rel('safDll', @@ -1141,8 +1141,8 @@ config.libs = [ Object(Matching, "REL/w06Dll/main.c"), Object(Matching, "REL/w06Dll/mg_item.c"), Object(Matching, "REL/w06Dll/mg_coin.c"), - Object(NonMatching, "REL/w06Dll/fire.c"), - Object(NonMatching, "REL/w06Dll/bridge.c"), + Object(Matching, "REL/w06Dll/fire.c"), + Object(Matching, "REL/w06Dll/bridge.c"), Object(NonMatching, "REL/w06Dll/bowser.c"), } ),