From 7c5f4adcc8725efa0f0476e33732873a4167f54d Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Wed, 11 Nov 2009 17:32:01 +0100 Subject: Modified the way of calling V86 procedures, and calling BIOS ints --- Source/Kernel/VTManager/SimpleVT.class.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Source/Kernel/VTManager') diff --git a/Source/Kernel/VTManager/SimpleVT.class.cpp b/Source/Kernel/VTManager/SimpleVT.class.cpp index d304a5f..4a16b54 100644 --- a/Source/Kernel/VTManager/SimpleVT.class.cpp +++ b/Source/Kernel/VTManager/SimpleVT.class.cpp @@ -78,7 +78,11 @@ void SimpleVT::scroll() { BUFCHR(m_rows - 1, c).c = ' '; BUFCHR(m_rows - 1, c).color = m_color; } - if (m_mapped) redraw(); + if (m_mapped) { + if (!Disp::textScroll(m_maprow, m_mapcol, m_rows, m_cols, m_color)) { + redraw(); + } + } } void SimpleVT::updateCursor() { -- cgit v1.2.3