From 49de64b3ccb7e6370218a206a1bfbb0ce669710f Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 14 Oct 2006 01:18:49 +0000 Subject: Ooops, correct dst pointer svn-id: r24301 --- engines/agos/vga.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp index 82191a61a2..9ceebc5364 100644 --- a/engines/agos/vga.cpp +++ b/engines/agos/vga.cpp @@ -2478,7 +2478,7 @@ void AGOSEngine::vc56_fullScreen() { byte *src = _curVgaFile2 + 32; byte *dst = getBackBuf(); - memcpy(dst, src, _screenHeight * _screenWidth); + memcpy(dst, src + 768, _screenHeight * _screenWidth); //fullFade(); uint8 palette[1024]; -- cgit v1.2.3