1
0
Fork 0

tolower for a better == of the old instruction

This commit is contained in:
dreg_fr33project 2014-09-12 09:07:06 +02:00
parent e6fdba11a5
commit eeeefc351a
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ void CPUDisassembly::assembleAt()
return;
//if the instruction its unkown or is the old instruction or empty (easy way to skip from GUI) skipping
if(mLineEdit.editText == QString("???") || mLineEdit.editText == instr.instStr || mLineEdit.editText == QString(""))
if(mLineEdit.editText == QString("???") || mLineEdit.editText.toLower() == instr.instStr.toLower() || mLineEdit.editText == QString(""))
break;
Config()->setBool("Disassembler", "FillNOPs", mLineEdit.bChecked);