Version 0.8.2: Fix asm output

This commit is contained in:
Luke Street 2024-05-17 07:12:05 -06:00
parent 0bcc539d36
commit bf0d1a823f
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -336,7 +336,7 @@ checksum = "c2e06f9bce634a3c898eb1e5cb949ff63133cbb218af93cc9b38b31d6f3ea285"
[[package]]
name = "decomp-toolkit"
version = "0.8.1"
version = "0.8.2"
dependencies = [
"anyhow",
"ar",

View File

@ -3,7 +3,7 @@ name = "decomp-toolkit"
description = "Yet another GameCube/Wii decompilation toolkit."
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
publish = false
repository = "https://github.com/encounter/decomp-toolkit"

View File

@ -297,7 +297,7 @@ where
write!(w, "{}", sins.mnemonic)?;
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 i == 0 {
write!(w, " ")?;