diff --git a/Cargo.lock b/Cargo.lock index 15de045..37e8c4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,7 +295,7 @@ dependencies = [ [[package]] name = "decomp-toolkit" -version = "0.6.4" +version = "0.6.5" dependencies = [ "anyhow", "ar", diff --git a/Cargo.toml b/Cargo.toml index d64f598..0a1dc62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "decomp-toolkit" description = "Yet another GameCube/Wii decompilation toolkit." authors = ["Luke Street "] license = "MIT OR Apache-2.0" -version = "0.6.4" +version = "0.6.5" edition = "2021" publish = false repository = "https://github.com/encounter/decomp-toolkit" diff --git a/src/util/lcf.rs b/src/util/lcf.rs index 7bd0a82..4c31465 100644 --- a/src/util/lcf.rs +++ b/src/util/lcf.rs @@ -110,10 +110,6 @@ pub fn generate_ldscript_partial( Ok(out) } -pub fn obj_path_for_unit(unit: &str) -> PathBuf { - PathBuf::from_slash(unit).with_extension("o") -} +pub fn obj_path_for_unit(unit: &str) -> PathBuf { PathBuf::from_slash(unit).with_extension("o") } -pub fn asm_path_for_unit(unit: &str) -> PathBuf { - PathBuf::from_slash(unit).with_extension("s") -} +pub fn asm_path_for_unit(unit: &str) -> PathBuf { PathBuf::from_slash(unit).with_extension("s") }