Skip to content

Commit

Permalink
Added basic support for Mario in the Multiverse
Browse files Browse the repository at this point in the history
  • Loading branch information
aglab2 committed Dec 24, 2024
1 parent 9185674 commit 0abf9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MIPSInterpreter/DecompManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static bool IsVAddr(uint addr)

static bool IsBZeroSize(int size)
{
return size > 0 && size < 0x1000;
return size > 0 && size <= 0x8000;
}

public DecompManager(uint[] mem)
Expand Down

0 comments on commit 0abf9ac

Please sign in to comment.