Skip to content

Commit

Permalink
Version 0.8.2: Fix asm output
Browse files Browse the repository at this point in the history
  • Loading branch information
encounter committed May 17, 2024
1 parent 0bcc539 commit bf0d1a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "decomp-toolkit"
description = "Yet another GameCube/Wii decompilation toolkit."
authors = ["Luke Street <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion src/util/asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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, " ")?;
Expand Down

0 comments on commit bf0d1a8

Please sign in to comment.