aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-04-08 19:05:41 +0000
committerPaweł Kołodziejski2003-04-08 19:05:41 +0000
commit7189347adbe188ddf95b44e8580b6ea348a65030 (patch)
treed23d5b022989cf3addc81cfdf946be3de99fde0a /scumm/string.cpp
parentb93b9dc6a0528e538ebf47f00ba1926bf4e68027 (diff)
downloadscummvm-rg350-7189347adbe188ddf95b44e8580b6ea348a65030.tar.gz
scummvm-rg350-7189347adbe188ddf95b44e8580b6ea348a65030.tar.bz2
scummvm-rg350-7189347adbe188ddf95b44e8580b6ea348a65030.zip
changed range from GF_OLD256 to GF_AFTER_V3
svn-id: r6940
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 646880b55f..2b87523ce6 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -144,7 +144,7 @@ void Scumm::CHARSET_1() {
_charset->_right = _string[0].right;
_charset->_color = _charsetColor;
- if (!(_features & GF_OLD256)) // FIXME
+ if (!(_features & GF_AFTER_V3)) // FIXME
for (i = 0; i < 4; i++)
_charsetColorMap[i] = _charsetData[_charset->getCurID()][i];
@@ -187,7 +187,7 @@ void Scumm::CHARSET_1() {
_talkDelay = _defaultTalkDelay;
if (!_keepText) {
- if (_features & GF_OLD256) {
+ if (_features & GF_AFTER_V3) {
gdi._mask_left = _string[0].xpos;
gdi._mask_top = _string[0].ypos;
gdi._mask_bottom = _string[0].ypos + 8;
@@ -227,7 +227,7 @@ void Scumm::CHARSET_1() {
}
if (c == 13) {
newLine:;
- if (_features & GF_OLD256) {
+ if (_features & GF_AFTER_V3) {
_charset->_nextTop = 8;
_charset->_nextLeft = 0;
continue;
@@ -248,7 +248,7 @@ void Scumm::CHARSET_1() {
if (c != 0xFF) {
_charset->_left = _charset->_nextLeft;
_charset->_top = _charset->_nextTop;
- if (_features & GF_OLD256) {
+ if (_features & GF_AFTER_V3) {
_charset->printChar(c);
} else if (_features & GF_AFTER_V6) {
if (!_noSubtitles || (_haveMsg != 0xFE && _haveMsg != 0xFF))
@@ -410,7 +410,7 @@ void Scumm::drawString(int a) {
_charset->_disableOffsX = _charset->_firstChar = true;
_charset->setCurID(_string[a].charset);
- if (!(_features & GF_OLD256)) {
+ if (!(_features & GF_AFTER_V3)) {
for (i = 0; i < 4; i++)
_charsetColorMap[i] = _charsetData[_charset->getCurID()][i];