aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/special.cpp
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2015-12-23 21:51:39 +0100
committerWillem Jan Palenstijn2015-12-23 21:51:39 +0100
commit10d9d8dee5104736da53a2807f3367b13731ad8f (patch)
treeb00efc0a0e65dff64e4460c2f0290cb1910906dc /engines/lab/special.cpp
parentff93e55afd6467d7a53c836db931de786f8f7d63 (diff)
downloadscummvm-rg350-10d9d8dee5104736da53a2807f3367b13731ad8f.tar.gz
scummvm-rg350-10d9d8dee5104736da53a2807f3367b13731ad8f.tar.bz2
scummvm-rg350-10d9d8dee5104736da53a2807f3367b13731ad8f.zip
LAB: Fix warnings by adding consts
Diffstat (limited to 'engines/lab/special.cpp')
-rw-r--r--engines/lab/special.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/lab/special.cpp b/engines/lab/special.cpp
index 649c725102..7dd42dcf9b 100644
--- a/engines/lab/special.cpp
+++ b/engines/lab/special.cpp
@@ -293,10 +293,10 @@ void LabEngine::doJournal() {
_graphics->blackScreen();
}
-void LabEngine::drawMonText(char *text, TextFont *monitorFont, Common::Rect textRect, bool isinteractive) {
+void LabEngine::drawMonText(const char *text, TextFont *monitorFont, Common::Rect textRect, bool isinteractive) {
uint16 drawingToPage = 0, yspacing = 0;
int charsDrawn = 0;
- char *curText = text;
+ const char *curText = text;
_event->mouseHide();
@@ -347,7 +347,7 @@ void LabEngine::drawMonText(char *text, TextFont *monitorFont, Common::Rect text
_event->mouseShow();
}
-void LabEngine::processMonitor(char *ntext, TextFont *monitorFont, bool isInteractive, Common::Rect textRect) {
+void LabEngine::processMonitor(const char *ntext, TextFont *monitorFont, bool isInteractive, Common::Rect textRect) {
Common::String startFileName = _monitorTextFilename;
CloseDataPtr startClosePtr = _closeDataPtr, lastClosePtr[10];
uint16 depth = 0;
@@ -371,7 +371,7 @@ void LabEngine::processMonitor(char *ntext, TextFont *monitorFont, bool isIntera
Common::String text = _resource->getText(_monitorTextFilename);
_graphics->fade(false, 0);
- drawMonText((char *)text.c_str(), monitorFont, textRect, isInteractive);
+ drawMonText(text.c_str(), monitorFont, textRect, isInteractive);
_graphics->fade(true, 0);
}
}
@@ -461,10 +461,10 @@ void LabEngine::doMonitor(const Common::String background, const Common::String
Common::String ntext = _resource->getText(textfile);
_graphics->loadBackPict(background, _highPalette);
- drawMonText((char *)ntext.c_str(), monitorFont, scaledRect, isinteractive);
+ drawMonText(ntext.c_str(), monitorFont, scaledRect, isinteractive);
_event->mouseShow();
_graphics->fade(true, 0);
- processMonitor((char *)ntext.c_str(), monitorFont, isinteractive, scaledRect);
+ processMonitor(ntext.c_str(), monitorFont, isinteractive, scaledRect);
_graphics->fade(false, 0);
_event->mouseHide();
_graphics->closeFont(&monitorFont);