diff options
| author | Travis Howell | 2005-05-14 14:06:37 +0000 | 
|---|---|---|
| committer | Travis Howell | 2005-05-14 14:06:37 +0000 | 
| commit | 93be3e16d8f9e6f8edec316ec749e189b2f33cc8 (patch) | |
| tree | 002e60c05c198e3588243d5b46b50356615b8d6a /scumm/charset.cpp | |
| parent | 30d4f8634137787033d3a6be96673a96f0863b4f (diff) | |
| download | scummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.tar.gz scummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.tar.bz2 scummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.zip  | |
Add configure option to disable HE 70+ games.
svn-id: r18091
Diffstat (limited to 'scumm/charset.cpp')
| -rw-r--r-- | scumm/charset.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index 2b358b185d..6e94ef83b7 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -1383,6 +1383,7 @@ void CharsetRendererClassic::printChar(int chr) {  	}  	if ((_vm->_heversion >= 71 && type >= 8) || (_vm->_heversion >= 90 && type == 0)) { +#ifndef DISABLE_HE  		if (_ignoreCharsetMask || !vs->hasTwoBuffers) {  			dstPtr = vs->getPixels(0, 0);  		} else { @@ -1407,6 +1408,7 @@ void CharsetRendererClassic::printChar(int chr) {  			Common::Rect dst(_left, _top, _left + origWidth, _top + origHeight);  			_vm->gdi.copyVirtScreenBuffers(dst);  		} +#endif  	} else {  		Graphics::Surface dstSurface;  		Graphics::Surface backSurface;  | 
