aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.cpp
diff options
context:
space:
mode:
authorMax Horn2005-05-26 12:26:03 +0000
committerMax Horn2005-05-26 12:26:03 +0000
commit983d6d71b82e6e516e7103b2d6c3f462c2c8844a (patch)
tree0c7c7aba564c6faabf41e84b51ab7f0ebbb59955 /scumm/charset.cpp
parentc060d56cc8ef52b5ae7df43c215813d724940398 (diff)
downloadscummvm-rg350-983d6d71b82e6e516e7103b2d6c3f462c2c8844a.tar.gz
scummvm-rg350-983d6d71b82e6e516e7103b2d6c3f462c2c8844a.tar.bz2
scummvm-rg350-983d6d71b82e6e516e7103b2d6c3f462c2c8844a.zip
Added CharsetRenderer::getCharHeight()
svn-id: r18260
Diffstat (limited to 'scumm/charset.cpp')
-rw-r--r--scumm/charset.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index 91b11c1746..b1efd42172 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -1604,6 +1604,11 @@ void CharsetRendererNut::setCurID(byte id) {
assert(_current);
}
+int CharsetRendererNut::getCharHeight(byte chr) {
+ assert(_current);
+ return _current->getCharHeight(chr);
+}
+
int CharsetRendererNut::getCharWidth(byte chr) {
assert(_current);
return _current->getCharWidth(chr);