aboutsummaryrefslogtreecommitdiff
path: root/scumm/nut_renderer.cpp
diff options
context:
space:
mode:
authorMax Horn2004-09-18 22:42:45 +0000
committerMax Horn2004-09-18 22:42:45 +0000
commit768133d6e6e4432d599fcf1261193334227b2033 (patch)
treed9ab4bce2466c4808f83244bd8ae4840f0468c70 /scumm/nut_renderer.cpp
parente74a3c9a2bdaead10b130e09e7a9cdf2fac17d55 (diff)
downloadscummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.gz
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.bz2
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.zip
Rename some member vars to avoid _ followed by an uppercase letter. More of those are left in the code, though (and I am not really sure whether we want to change that, so far we had no problems caused by this)
svn-id: r15175
Diffstat (limited to 'scumm/nut_renderer.cpp')
-rw-r--r--scumm/nut_renderer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/nut_renderer.cpp b/scumm/nut_renderer.cpp
index e991dca2c0..0930ae9397 100644
--- a/scumm/nut_renderer.cpp
+++ b/scumm/nut_renderer.cpp
@@ -204,7 +204,7 @@ int NutRenderer::getCharWidth(byte c) {
return 0;
}
- if (c >= 0x80 && _vm->_CJKMode) {
+ if (c >= 0x80 && _vm->_useCJKMode) {
if (_vm->_gameId == GID_CMI)
return 8;
if (_vm->_gameId == GID_DIG)
@@ -225,7 +225,7 @@ int NutRenderer::getCharHeight(byte c) {
return 0;
}
- if (c >= 0x80 && _vm->_CJKMode) {
+ if (c >= 0x80 && _vm->_useCJKMode) {
if (_vm->_gameId == GID_CMI)
return 16;
if (_vm->_gameId == GID_DIG)
@@ -265,7 +265,7 @@ void NutRenderer::drawShadowChar(const Graphics::Surface &s, int c, int x, int y
y += offsetY[i];
color = cTable[i];
- if (c >= 256 && _vm->_CJKMode)
+ if (c >= 256 && _vm->_useCJKMode)
draw2byte(s, c, x, y, color);
else
drawChar(s, (byte)c, x, y, color);