From 71eac5acd30cb1fd48cbfbc464b4a37adee8a6b4 Mon Sep 17 00:00:00 2001 From: Ludvig Strigeus Date: Tue, 16 Apr 2002 12:07:19 +0000 Subject: endian fixes, don't use adlib driver if sound initialization fails, simon1 savedialog works svn-id: r3955 --- gfx.cpp | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'gfx.cpp') diff --git a/gfx.cpp b/gfx.cpp index c50fb1713a..443ea86061 100644 --- a/gfx.cpp +++ b/gfx.cpp @@ -157,31 +157,6 @@ void Scumm::drawDirtyScreenParts() } } -void Scumm::redrawLines(int from, int to) -{ - VirtScreen *vs = virtscr; - int i, j; - - if (to <= from) - return; - - for (i = 0; i != ARRAYSIZE(virtscr); i++, vs++) { - if (to > vs->topline && from < vs->topline + vs->height) { - int min = from - vs->topline; - int max = to - vs->topline; - if (min < 0) - min = 0; - if (max > vs->height) - max = vs->height; - for (j = 0; j != 40; j++) { - vs->tdirty[j] = min; - vs->bdirty[j] = max; - } - gdi.updateDirtyScreen(vs); - } - } -} - void Scumm::updateDirtyScreen(int slot) { gdi.updateDirtyScreen(&virtscr[slot]); -- cgit v1.2.3