Skip to content

Commit 96b43d6

Browse files
authored
Merge pull request bfbbdecomp#33 from bluisblu/dev
Set sym flag on for Wad files
2 parents a39c300 + 7793b71 commit 96b43d6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

configure.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -358,22 +358,22 @@ def MatchingFor(*versions):
358358
"cflags": cflags_tssm,
359359
"progress_category": "game",
360360
"objects": [
361-
Object(NonMatching, "SB/Core/x/xWad4.cpp"),
362-
Object(NonMatching, "SB/Core/x/xWad2.cpp"),
363-
Object(NonMatching, "SB/Core/x/xWad3.cpp"),
364-
Object(NonMatching, "SB/Core/x/xWad1.cpp"),
365-
Object(NonMatching, "SB/Core/x/xWad5.cpp"),
361+
Object(NonMatching, "SB/Core/x/xWad4.cpp", extra_cflags=["-sym on"]),
362+
Object(NonMatching, "SB/Core/x/xWad2.cpp", extra_cflags=["-sym on"]),
363+
Object(NonMatching, "SB/Core/x/xWad3.cpp", extra_cflags=["-sym on"]),
364+
Object(NonMatching, "SB/Core/x/xWad1.cpp", extra_cflags=["-sym on"]),
365+
Object(NonMatching, "SB/Core/x/xWad5.cpp", extra_cflags=["-sym on"]),
366366
Object(NonMatching, "SB/Core/x/xFXHighDynamicRange.cpp"),
367367
Object(NonMatching, "SB/Core/x/xFXCameraTexture.cpp"),
368368
Object(NonMatching, "SB/Core/x/xModelBlur.cpp"),
369369
Object(NonMatching, "SB/Core/x/xCamera.cpp"),
370-
Object(NonMatching, "SB/Game/zWadNME.cpp"),
371-
Object(NonMatching, "SB/Game/zWad1.cpp"),
372-
Object(NonMatching, "SB/Game/zWad2.cpp"),
373-
Object(NonMatching, "SB/Game/zWad3.cpp"),
374-
Object(NonMatching, "SB/Game/zWadEnt.cpp"),
375-
Object(NonMatching, "SB/Game/zWadHud.cpp"),
376-
Object(NonMatching, "SB/Game/zWadUI.cpp"),
370+
Object(NonMatching, "SB/Game/zWadNME.cpp", extra_cflags=["-sym on"]),
371+
Object(NonMatching, "SB/Game/zWad1.cpp", extra_cflags=["-sym on"]),
372+
Object(NonMatching, "SB/Game/zWad2.cpp", extra_cflags=["-sym on"]),
373+
Object(NonMatching, "SB/Game/zWad3.cpp", extra_cflags=["-sym on"]),
374+
Object(NonMatching, "SB/Game/zWadEnt.cpp", extra_cflags=["-sym on"]),
375+
Object(NonMatching, "SB/Game/zWadHud.cpp", extra_cflags=["-sym on"]),
376+
Object(NonMatching, "SB/Game/zWadUI.cpp", extra_cflags=["-sym on"]),
377377
Object(NonMatching, "SB/Game/zMain.cpp"),
378378
Object(NonMatching, "SB/Game/zTalkBox.cpp", extra_cflags=["-inline off"]),
379379
Object(NonMatching, "SB/Game/zTaskBox.cpp", extra_cflags=["-inline off"]),
@@ -391,9 +391,9 @@ def MatchingFor(*versions):
391391
Object(NonMatching, "SB/Game/zParticleLocator.cpp"),
392392
Object(NonMatching, "SB/Game/zParticleSystems.cpp"),
393393
Object(NonMatching, "SB/Game/zParticleSystemWaterfall.cpp"),
394-
Object(NonMatching, "SB/Game/zWadCine.cpp"),
394+
Object(NonMatching, "SB/Game/zWadCine.cpp", extra_cflags=["-sym on"]),
395395
Object(NonMatching, "SB/Game/zParticleCustom.cpp"),
396-
Object(NonMatching, "SB/Core/gc/iWad.cpp"),
396+
Object(NonMatching, "SB/Core/gc/iWad.cpp", extra_cflags=["-sym on"]),
397397
Object(NonMatching, "SB/Core/gc/iTRC.cpp"),
398398
Object(Matching, "SB/Core/gc/iException.cpp"),
399399
Object(NonMatching, "SB/Core/gc/iScrFX.cpp"),

0 commit comments

Comments
 (0)