From 4cb280c42a325e19a54531055cd14d7b3a4ce7b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Tue, 15 Jan 2008 17:46:25 +0000 Subject: [PATCH] vesa pmode set window ignores the window parameter (complies with univbe) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3079 --- src/ints/int10_vesa.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ints/int10_vesa.cpp b/src/ints/int10_vesa.cpp index 08d035ce..09a60234 100644 --- a/src/ints/int10_vesa.cpp +++ b/src/ints/int10_vesa.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: int10_vesa.cpp,v 1.31 2008-01-12 17:37:48 c2woody Exp $ */ +/* $Id: int10_vesa.cpp,v 1.32 2008-01-15 17:46:25 c2woody Exp $ */ #include #include @@ -445,7 +445,7 @@ static Bitu VESA_SetWindow(void) { } static Bitu VESA_PMSetWindow(void) { - VESA_SetCPUWindow(reg_bl,(Bit8u)reg_dx); + VESA_SetCPUWindow(0,(Bit8u)reg_dx); return 0; } static Bitu VESA_PMSetPalette(void) {