From 7c227055a465f54dd2d562833a1d244a5c113ace Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 29 Oct 2007 23:55:13 +0000 Subject: [PATCH] Fix compile warning, looks like this memcpy should be a memset. svn-id: r29319 --- engines/igor/parts/part_14.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/igor/parts/part_14.cpp b/engines/igor/parts/part_14.cpp index d202f4db6aa..0ff74cbdb5a 100644 --- a/engines/igor/parts/part_14.cpp +++ b/engines/igor/parts/part_14.cpp @@ -98,7 +98,7 @@ void IgorEngine::PART_14_ACTION_103() { fadeOutPalette(768); PART_14_HELPER_9(); loadResourceData__ROOM_ChurchPuzzle(); - memcpy(_screenVGA + 46080, 0, 17920); + memset(_screenVGA + 46080, 0, 17920); drawVerbsPanel(); drawInventory(_inventoryInfo[72], 0); fadeInPalette(768);