Version 0.8.2: Fix asm output
This commit is contained in:
parent
0bcc539d36
commit
bf0d1a823f
|
@ -336,7 +336,7 @@ checksum = "c2e06f9bce634a3c898eb1e5cb949ff63133cbb218af93cc9b38b31d6f3ea285"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "decomp-toolkit"
|
name = "decomp-toolkit"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"ar",
|
"ar",
|
||||||
|
|
|
@ -3,7 +3,7 @@ name = "decomp-toolkit"
|
||||||
description = "Yet another GameCube/Wii decompilation toolkit."
|
description = "Yet another GameCube/Wii decompilation toolkit."
|
||||||
authors = ["Luke Street <luke@street.dev>"]
|
authors = ["Luke Street <luke@street.dev>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
repository = "https://github.com/encounter/decomp-toolkit"
|
repository = "https://github.com/encounter/decomp-toolkit"
|
||||||
|
|
|
@ -297,7 +297,7 @@ where
|
||||||
write!(w, "{}", sins.mnemonic)?;
|
write!(w, "{}", sins.mnemonic)?;
|
||||||
|
|
||||||
let mut writing_offset = false;
|
let mut writing_offset = false;
|
||||||
for (i, arg) in sins.args.iter().enumerate() {
|
for (i, arg) in sins.args_iter().enumerate() {
|
||||||
if !writing_offset {
|
if !writing_offset {
|
||||||
if i == 0 {
|
if i == 0 {
|
||||||
write!(w, " ")?;
|
write!(w, " ")?;
|
||||||
|
|
Loading…
Reference in New Issue