Skip to content

Commit

Permalink
Fix writing of lightmap data
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Jul 16, 2024
1 parent 82d338e commit 4968fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/GBX.NET/Engines/Game/CGameCtnChallenge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ private static void WriteLightMapCacheSmall(CGameCtnChallenge n, GbxWriter w)

w.Write((int)ms.Length);
w.Write((int)compressedMs.Length);
compressedMs.CopyTo(w.BaseStream);
compressedMs.WriteTo(w.BaseStream);
}
}

Expand Down

0 comments on commit 4968fb0

Please sign in to comment.