diff options
author | eriktorbjorn | 2011-06-12 19:52:08 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:34:26 +0200 |
commit | 0f8eacf0bdab45f574f0e02af89633cf8d9c8300 (patch) | |
tree | e6cd9ac65b9a6c9943ed1893f5f4e804eefd238c /engines/dreamweb | |
parent | 70bbb1a2aeb6f545cc73bbd3ba9ccf7646a665eb (diff) | |
download | scummvm-rg350-0f8eacf0bdab45f574f0e02af89633cf8d9c8300.tar.gz scummvm-rg350-0f8eacf0bdab45f574f0e02af89633cf8d9c8300.tar.bz2 scummvm-rg350-0f8eacf0bdab45f574f0e02af89633cf8d9c8300.zip |
DREAMWEB: Fix the maingamepal offset. (It changed recently.)
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/dreamweb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp index 2ca38ce9a4..c72215292b 100644 --- a/engines/dreamweb/dreamweb.cpp +++ b/engines/dreamweb/dreamweb.cpp @@ -769,7 +769,7 @@ void showpcx(Context &context) { pcxFile.seek(16, SEEK_SET); context.es = context.data.word(kBuffers); - maingamepal = context.es.ptr(5946, 768); + maingamepal = context.es.ptr(4782, 768); pcxFile.read(maingamepal, 48); memset(maingamepal + 48, 0xff, 720); |