1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-22 12:47:45 +00:00

Stub out SqpkFileOperation::RemoveAll

This commit is contained in:
Joshua Goins 2022-07-20 16:30:17 -04:00
parent 70a92594a2
commit f340319a9e

View file

@ -427,6 +427,9 @@ pub fn process_patch(data_dir : &str, path : &str) {
fs::remove_file(new_path.as_str()); fs::remove_file(new_path.as_str());
} }
SqpkFileOperation::RemoveAll => {
println!("STUB: SqpkFileOperation::RemoveAll");
}
_ => { _ => {
panic!("Unhandled operation!"); panic!("Unhandled operation!");
} }