diff options
Diffstat (limited to 'scumm/resource_v3.cpp')
-rw-r--r-- | scumm/resource_v3.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scumm/resource_v3.cpp b/scumm/resource_v3.cpp index b64ae5ad30..0b8ac8531e 100644 --- a/scumm/resource_v3.cpp +++ b/scumm/resource_v3.cpp @@ -184,8 +184,11 @@ void Scumm_v3::loadCharset(int no) { File file; char buf[20]; - sprintf(buf, "%02d.LFL", 99 - no); -// sprintf(buf, "%02d.LFL", 98 + no); + if (_gameId == GID_ZAK256) + sprintf(buf, "%02d.LFL", 98 + no); + else + sprintf(buf, "%02d.LFL", 99 - no); + file.open(buf, _gameDataPath); if (file.isOpen() == false) { |