Skip to content

Commit ebd7f94

Browse files
authored
[OoT] Always consider global.h existing for legacy version (#631)
fix legacy
1 parent bc50692 commit ebd7f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fast64_internal/z64/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def is_include_present(self, include_file: str):
156156
return include_file_path.exists()
157157

158158
def is_globalh_present(self):
159-
return self.is_include_present("global.h")
159+
return self.oot_version == "legacy" or self.is_include_present("global.h")
160160

161161
def is_z64sceneh_present(self):
162162
return self.is_include_present("z64scene.h")

0 commit comments

Comments
 (0)