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

remove debug

This commit is contained in:
Robin Appelman 2020-06-26 23:11:32 +02:00
commit 9b18522190

View file

@ -49,7 +49,6 @@ impl<'a> BspFile<'a> {
fn get_lump(&self, lump: LumpType) -> BspResult<Cow<[u8]>> {
let lump = &self.directories[lump];
dbg!(lump);
let raw_data = self
.data
.get(lump.offset as usize..lump.offset as usize + lump.length as usize)