diff options
author | Max Horn | 2005-04-03 23:00:15 +0000 |
---|---|---|
committer | Max Horn | 2005-04-03 23:00:15 +0000 |
commit | 5f880737c587fffc4aaa3295e7aace8dc774b70d (patch) | |
tree | 499717e1796ba58cfa540544d1420b9927fd6bc9 | |
parent | 3feadcac28466679ce6559877e9144f6410c6ddd (diff) | |
download | scummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.tar.gz scummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.tar.bz2 scummvm-rg350-5f880737c587fffc4aaa3295e7aace8dc774b70d.zip |
Use proper constant rtCharset instead of hardcoding '6'
svn-id: r17364
-rw-r--r-- | scumm/resource_v4.cpp | 2 |
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(); } |