From 30f6ef9049af584c1a796a4e18fe0c92e2cab2f5 Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Wed, 23 Jun 2021 20:03:49 +0200 Subject: [PATCH] Fix wrong struct dec. --- io_export_psx_tmesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_export_psx_tmesh.py b/io_export_psx_tmesh.py index 01cc8ea..22990c4 100644 --- a/io_export_psx_tmesh.py +++ b/io_export_psx_tmesh.py @@ -1006,7 +1006,7 @@ class ExportMyFormat(bpy.types.Operator, ExportHelper): # LEVEL h.write("typedef struct LEVEL {\n" + - "\tMATRIX * BGc;\n" + + "\tCVECTOR * BGc;\n" + "\tMATRIX * cmat;\n" + "\tMATRIX * lgtmat;\n" + "\tMESH ** meshes;\n" +