1
0
Fork 0

GUI: fixed another bug with the string instructions in BeaTokenizer (thanks Nukem for reporting!)

This commit is contained in:
Mr. eXoDia 2014-06-25 03:08:19 +02:00
parent 023f0a6a0c
commit 7a4757be61
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ void BeaTokenizer::Mnemonic(BeaInstructionToken* instr, const DISASM* disasm)
type=TokenMnemonicNop;
else if(completeInstr.contains("movs") || completeInstr.contains("cmps") || completeInstr.contains("scas") || completeInstr.contains("lods") || completeInstr.contains("stos") || completeInstr.contains("outs"))
{
if(mnemonic.length()<5)
if(completeInstr.length()!=5)
{
AddToken(instr, type, mnemonic, 0);
return;