Remove some debug output
This commit is contained in:
parent
0c0ed8b60a
commit
639e38f73a
1 changed files with 1 additions and 2 deletions
|
@ -93,8 +93,7 @@ impl Parsable for GameSave {
|
||||||
for _i in 0..cube_count {
|
for _i in 0..cube_count {
|
||||||
let header = EntityHeader::parse(data)?;
|
let header = EntityHeader::parse(data)?;
|
||||||
let hash = header.hash;
|
let hash = header.hash;
|
||||||
#[cfg(debug_assertions)]
|
//println!("Handling block {} (hash: {} id:{}/{} components: {})", cubes_h.len(), hash, header.entity_id, header.group_id, header.component_count);
|
||||||
println!("Handling block {} (hash: {} id:{}/{} components: {})", cubes_h.len(), hash, header.entity_id, header.group_id, header.component_count);
|
|
||||||
cubes_h.push(header);
|
cubes_h.push(header);
|
||||||
cubes_e.push(lookup_hashname(hash, data)?);
|
cubes_e.push(lookup_hashname(hash, data)?);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue