From 8271f1f0dca0bbca24acfdf52faf596a43a2c6fd Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 10 Sep 2006 13:09:04 +0000 Subject: Makes lure compile with msvc8 again. svn-id: r23861 --- engines/lure/debug-methods.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/lure/debug-methods.cpp b/engines/lure/debug-methods.cpp index 85be551bc7..52487da303 100644 --- a/engines/lure/debug-methods.cpp +++ b/engines/lure/debug-methods.cpp @@ -72,7 +72,7 @@ void showActiveHotspots() { ++s; } - Surface *surface = Surface::newDialog(300, numLines, lines); + Surface *surface = Surface::newDialog(300, numLines, (const char**)lines); mouse.cursorOff(); surface->copyToScreen(10, 40); events.waitForPress(); @@ -117,7 +117,7 @@ void showRoomHotspots() { } } - Surface *surface = Surface::newDialog(300, numLines, lines); + Surface *surface = Surface::newDialog(300, numLines, (const char**)lines); mouse.cursorOff(); surface->copyToScreen(10, 40); events.waitForPress(); -- cgit v1.2.3