don't big error

This commit is contained in:
Quaternions 2024-01-10 19:53:29 -08:00
parent 4907362c71
commit ae19448ee8

View File

@ -1244,8 +1244,9 @@ fn extract_textures(paths:Vec<std::path::PathBuf>,vpk_paths:Vec<std::path::PathB
} }
for thread in thread_handles{ for thread in thread_handles{
match thread.join(){ match thread.join(){
Ok(a)=>a?, Ok(Err(e))=>println!("write error: {:?}",e),
Err(e)=>println!("error: {:?}",e), Err(e)=>println!("thread error: {:?}",e),
Ok(_)=>(),
} }
} }
Ok::<(),anyhow::Error>(()) Ok::<(),anyhow::Error>(())