Skip to content

Commit e4a3874

Browse files
The garbage chunk SVR3 is now replaced with a message reading "SuperBMD - Gamma".
1 parent f84a369 commit e4a3874

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

SuperBMD/source/Model.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,7 @@ public void ExportBMD(string fileName)
127127
writer.Write(0); // Placeholder for file size
128128
writer.Write(8); // Number of sections; bmd has 8, bdl has 9
129129

130-
writer.Write("SVR3".ToCharArray());
131-
writer.Write(-1);
132-
writer.Write((long)-1);
130+
writer.Write("SuperBMD - Gamma".ToCharArray());
133131

134132
Scenegraph.Write(writer, packetCount, vertexCount);
135133
VertexData.Write(writer);
@@ -147,8 +145,6 @@ public void ExportBMD(string fileName)
147145

148146
public void ExportAssImp(string fileName, string modelType, ExportSettings settings)
149147
{
150-
//throw new NotImplementedException();
151-
152148
string outDir = Path.GetDirectoryName(fileName);
153149

154150
Scene outScene = new Scene();

0 commit comments

Comments
 (0)