diff options
author | Martin Kiewitz | 2009-11-04 12:57:11 +0000 |
---|---|---|
committer | Martin Kiewitz | 2009-11-04 12:57:11 +0000 |
commit | 205a6c2299f5860397e2a95ace4628401aa319db (patch) | |
tree | 50d78f048aafcc826e9fe31d925be0c8ad50ef17 | |
parent | 429c06c5ae7d9a1cd144994aaff46f87a13a1943 (diff) | |
download | scummvm-rg350-205a6c2299f5860397e2a95ace4628401aa319db.tar.gz scummvm-rg350-205a6c2299f5860397e2a95ace4628401aa319db.tar.bz2 scummvm-rg350-205a6c2299f5860397e2a95ace4628401aa319db.zip |
SCI: forgot to adjust gui32 as well
svn-id: r45662
-rw-r--r-- | engines/sci/gui32/gui32.cpp | 2 | ||||
-rw-r--r-- | engines/sci/gui32/gui32.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/engines/sci/gui32/gui32.cpp b/engines/sci/gui32/gui32.cpp index 5692c9b119..41bb52ccdc 100644 --- a/engines/sci/gui32/gui32.cpp +++ b/engines/sci/gui32/gui32.cpp @@ -2992,7 +2992,7 @@ void SciGui32::moveCursor(Common::Point pos) { gfxop_get_event(_s->gfx_state, SCI_EVT_PEEK); } -void SciGui32::modifyPriorityBands(int top, int bottom) { +void SciGui32::graphAdjustPriority(int top, int bottom) { _s->priority_first = top; _s->priority_last = bottom; } diff --git a/engines/sci/gui32/gui32.h b/engines/sci/gui32/gui32.h index dcdcf717af..c92ce53b40 100644 --- a/engines/sci/gui32/gui32.h +++ b/engines/sci/gui32/gui32.h @@ -83,6 +83,7 @@ public: void graphRestoreBox(reg_t handle); void graphUpdateBox(Common::Rect); void graphRedrawBox(Common::Rect); + void graphAdjustPriority(int top, int bottom); int16 picNotValid(int16 newPicNotValid); @@ -105,8 +106,6 @@ public: void setCursorPos(Common::Point pos); void moveCursor(Common::Point pos); - void modifyPriorityBands(int top, int bottom); - bool debugUndither(bool flag); bool debugShowMap(int mapNo); |