1
0
Fork 0

FLAG_VM was pointing at wrong bit

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@978
This commit is contained in:
Sjoerd van der Berg 2003-05-01 18:09:23 +00:00
parent 82c7fc4021
commit 6c525534ed

View file

@ -48,7 +48,7 @@ struct Flag_Info {
#define FLAG_IOPL 0x00003000
#define FLAG_NT 0x00004000
#define FLAG_VM 0x00040000
#define FLAG_VM 0x00020000
#define SETFLAGBIT(TYPE,TEST) if (TEST) flags.word|=FLAG_ ## TYPE; else flags.word&=~FLAG_ ## TYPE