aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/callables_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-07-31 19:12:44 +0000
committerNicola Mettifogo2007-07-31 19:12:44 +0000
commitbd22db45025abe9449f9d7a05f36fd8b268fbb5c (patch)
treeda68a8acebc1f82458619e6110106935f076d702 /engines/parallaction/callables_ns.cpp
parent806995ddd020548cc9cf9d144c430664008841ab (diff)
downloadscummvm-rg350-bd22db45025abe9449f9d7a05f36fd8b268fbb5c.tar.gz
scummvm-rg350-bd22db45025abe9449f9d7a05f36fd8b268fbb5c.tar.bz2
scummvm-rg350-bd22db45025abe9449f9d7a05f36fd8b268fbb5c.zip
Renamed palette functions.
svn-id: r28365
Diffstat (limited to 'engines/parallaction/callables_ns.cpp')
-rw-r--r--engines/parallaction/callables_ns.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/callables_ns.cpp b/engines/parallaction/callables_ns.cpp
index b124ba864a..9b3972723f 100644
--- a/engines/parallaction/callables_ns.cpp
+++ b/engines/parallaction/callables_ns.cpp
@@ -205,7 +205,7 @@ void Parallaction_ns::_c_fade(void *parm) {
memset(pal, 0, sizeof(Gfx::Palette));
for (uint16 _di = 0; _di < 64; _di++) {
- _gfx->fadePalette(pal);
+ _gfx->fadeInPalette(pal);
_gfx->setPalette(pal);
g_system->delayMillis(20);
@@ -341,7 +341,7 @@ void Parallaction_ns::_c_endComment(void *param) {
byte* _enginePal = _gfx->_palette;
Gfx::Palette pal;
- _gfx->buildBWPalette(pal);
+ _gfx->makeGrayscalePalette(pal);
int16 w = 0, h = 0;
_gfx->getStringExtent(_location._endComment, 130, &w, &h);