diff options
author | Johannes Schickel | 2006-09-10 13:09:04 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-09-10 13:09:04 +0000 |
commit | 8271f1f0dca0bbca24acfdf52faf596a43a2c6fd (patch) | |
tree | ec66ca76190e3953dcaf8d871b83633a7afc637e | |
parent | 4342d61448429de56543c25e16e83f4a96797474 (diff) | |
download | scummvm-rg350-8271f1f0dca0bbca24acfdf52faf596a43a2c6fd.tar.gz scummvm-rg350-8271f1f0dca0bbca24acfdf52faf596a43a2c6fd.tar.bz2 scummvm-rg350-8271f1f0dca0bbca24acfdf52faf596a43a2c6fd.zip |
Makes lure compile with msvc8 again.
svn-id: r23861
-rw-r--r-- | engines/lure/debug-methods.cpp | 4 |
1 files 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(); |