1
0
Fork 0

Fix setting vesa modes to ignore the higher bits

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1825
This commit is contained in:
Sjoerd van der Berg 2004-06-10 20:23:50 +00:00
parent 08003231f9
commit 50a0f440b7

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: int10_vesa.cpp,v 1.8 2004-02-29 22:18:24 harekiet Exp $ */
/* $Id: int10_vesa.cpp,v 1.9 2004-06-10 20:23:50 harekiet Exp $ */
#include <string.h>
#include <stddef.h>
@ -161,7 +161,7 @@ foundit:
Bit8u VESA_SetSVGAMode(Bit16u mode) {
if (INT10_SetVideoMode(mode)) return 0x00;
if (INT10_SetVideoMode(mode & 0xfff)) return 0x00;
return 0x01;
};