SCI: forgot to adjust gui32 as well

svn-id: r45662
This commit is contained in:
Martin Kiewitz 2009-11-04 12:57:11 +00:00
parent 429c06c5ae
commit 205a6c2299
2 changed files with 2 additions and 3 deletions

View File

@ -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;
}

View File

@ -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);