Debugger: Fixed multi-threading crash in assembler
This commit is contained in:
parent
6d0e011551
commit
2f20ab5092
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ namespace Mesen.GUI.Debugger
|
||||||
|
|
||||||
List<byte> convertedByteCode = new List<byte>();
|
List<byte> convertedByteCode = new List<byte>();
|
||||||
List<ErrorDetail> errorList = new List<ErrorDetail>();
|
List<ErrorDetail> errorList = new List<ErrorDetail>();
|
||||||
string[] codeLines = txtCode.Text.Replace("\r", "").Split('\n');
|
string[] codeLines = text.Replace("\r", "").Split('\n');
|
||||||
int line = 1;
|
int line = 1;
|
||||||
foreach(short s in byteCode) {
|
foreach(short s in byteCode) {
|
||||||
if(s >= 0) {
|
if(s >= 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue