1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-03 18:54:05 +02:00

Merge pull request #19 from krakow10/leaves-sort

use Leaves constructor in Leaves BinRead
This commit is contained in:
Robin Appelman 2025-02-26 23:01:10 +01:00 committed by GitHub
commit 5c2676f225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -87,7 +87,7 @@ impl BinRead for Leaves {
)?); )?);
} }
Ok(Self { leaves: entries }) Ok(Self::new(entries))
} }
} }