Fix some arm disassembly stuff

Some random code which is trying to align columns or something gets pooped up because "BLX" has no second part
This commit is contained in:
nattthebear 2020-09-24 14:52:16 -04:00
parent fe929c0c55
commit 7ea7f75f50
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ namespace BizHawk.Emulation.Cores.Components.ARM
string[] ret = Encoding.ASCII.GetString(s.total, 0, Array.IndexOf(s.total, (byte)0))
.ToString()
.Split(new string[] {" "}, 2, StringSplitOptions.None);
return ret[0].PadRight(8) + ret[1];
return ret[0].PadRight(8) + (ret.Length > 1 ? ret[1] : "");
}
}