aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2005-04-03 23:00:15 +0000
committerMax Horn2005-04-03 23:00:15 +0000
commit5f880737c587fffc4aaa3295e7aace8dc774b70d (patch)
tree499717e1796ba58cfa540544d1420b9927fd6bc9 /scumm
parent3feadcac28466679ce6559877e9144f6410c6ddd (diff)
downloadscummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.tar.gz
scummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.tar.bz2
scummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.zip
Use proper constant rtCharset instead of hardcoding '6'
svn-id: r17364
Diffstat (limited to 'scumm')
-rw-r--r--scumm/resource_v4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v4.cpp b/scumm/resource_v4.cpp
index d40b2e87ca..a5f39e4358 100644
--- a/scumm/resource_v4.cpp
+++ b/scumm/resource_v4.cpp
@@ -134,7 +134,7 @@ void ScummEngine_v4::loadCharset(int no) {
size = _fileHandle->readUint32LE() + 11;
- _fileHandle->read(createResource(6, no, size), size);
+ _fileHandle->read(createResource(rtCharset, no, size), size);
closeRoom();
}