add missing break for case
This commit is contained in:
parent
95b9685ad9
commit
9a46e9d0a5
|
@ -157,9 +157,12 @@ opCodes Instruction::decode() {
|
|||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return OP_ERROR;
|
||||
}
|
||||
|
||||
return OP_ERROR;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue