diff options
author | Eugene Sandulenko | 2004-06-23 01:47:34 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-06-23 01:47:34 +0000 |
commit | a7e85cab1a0f09782328c63ee22607936de58f28 (patch) | |
tree | 59b9a6334c59855b6f6b86f9d75644e4c8df7008 /scumm | |
parent | 2e0814514c346cc3c7bf091131dce91f99473810 (diff) | |
download | scummvm-rg350-a7e85cab1a0f09782328c63ee22607936de58f28.tar.gz scummvm-rg350-a7e85cab1a0f09782328c63ee22607936de58f28.tar.bz2 scummvm-rg350-a7e85cab1a0f09782328c63ee22607936de58f28.zip |
oops. Forgot to remove debug output and rename resource type.
svn-id: r14004
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/gfx.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v6.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index d51cea01cb..0a328b686b 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -467,7 +467,7 @@ void ScummEngine::initBGBuffers(int height) { } if (_heversion >= 70) - room = getResourceAddress(rtLast, _roomResource); + room = getResourceAddress(rtRoomStart, _roomResource); else room = getResourceAddress(rtRoom, _roomResource); diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index fea6f88b1f..11c3ea515f 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1461,7 +1461,6 @@ void ScummEngine_v6::o6_resourceRoutines() { int resid, op; op = fetchScriptByte(); - debug(0, "resourceRoutines op: %d", op); switch (op) { case 100: // SO_LOAD_SCRIPT resid = pop(); |