1
0
Fork 0

Correct a little bug that caused graphics corruption in win95 with s3 driver. (jmarsh)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4252
This commit is contained in:
Peter Veenstra 2019-06-30 11:31:09 +00:00
parent 4ffc75be3c
commit 05f15ac4c0

View file

@ -388,7 +388,7 @@ static void gen_dop_byte_imm_mem(DualOps op,DynReg * dr1,Bit8u di1,void* data) {
case DOP_AND: tmp=0x0522; break;
case DOP_OR: tmp=0x050a; break;
case DOP_TEST: tmp=0x0584; goto nochange; //Doesn't change
case DOP_MOV: tmp=0x0585; break;
case DOP_MOV: tmp=0x058A; break;
default:
IllegalOption("gen_dop_byte_imm_mem");
}