Skip to content

Commit d470f7a

Browse files
committed
Version 0.6.5
1 parent 2271531 commit d470f7a

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "decomp-toolkit"
33
description = "Yet another GameCube/Wii decompilation toolkit."
44
authors = ["Luke Street <[email protected]>"]
55
license = "MIT OR Apache-2.0"
6-
version = "0.6.4"
6+
version = "0.6.5"
77
edition = "2021"
88
publish = false
99
repository = "https://github.com/encounter/decomp-toolkit"

src/util/lcf.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ pub fn generate_ldscript_partial(
110110
Ok(out)
111111
}
112112

113-
pub fn obj_path_for_unit(unit: &str) -> PathBuf {
114-
PathBuf::from_slash(unit).with_extension("o")
115-
}
113+
pub fn obj_path_for_unit(unit: &str) -> PathBuf { PathBuf::from_slash(unit).with_extension("o") }
116114

117-
pub fn asm_path_for_unit(unit: &str) -> PathBuf {
118-
PathBuf::from_slash(unit).with_extension("s")
119-
}
115+
pub fn asm_path_for_unit(unit: &str) -> PathBuf { PathBuf::from_slash(unit).with_extension("s") }

0 commit comments

Comments
 (0)