Skip to content

Commit

Permalink
Fix commited suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilaa3 authored Aug 1, 2024
1 parent 0b1d326 commit f1f197d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fast64_internal/mk64/f3d/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ def execute(self, context):

f3d_context = MK64F3DContext(get_F3D_GBI(), base_path, material)
if "course_displaylists" in import_path or "course_data" in import_path:
vertex_path = importPath.replace("course_displaylists.inc", "course_vertices.inc").replace(
vertex_path = import_path.replace("course_displaylists.inc", "course_vertices.inc").replace(
"course_data", "course_vertices.inc"
)
print(vertex_path)
f3d_context.vertexData["0x4000000"] = parseCourseVtx(vertex_path, f3d_context.f3d)
f3d_context.vertexData["0x4000000"] = parse_course_vtx(vertex_path, f3d_context.f3d)

importMeshC(
data,
Expand Down

0 comments on commit f1f197d

Please sign in to comment.