MADS: Fix typo in drawScroller()
This commit is contained in:
parent
9460116df1
commit
26e545a9c8
2 changed files with 3 additions and 3 deletions
|
@ -487,7 +487,7 @@ void UserInterface::drawItemVocabList() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UserInterface::drawScrolller() {
|
void UserInterface::drawScroller() {
|
||||||
if (_scrollbarActive)
|
if (_scrollbarActive)
|
||||||
writeVocab(CAT_INV_SCROLLER, _scrollbarActive);
|
writeVocab(CAT_INV_SCROLLER, _scrollbarActive);
|
||||||
writeVocab(CAT_INV_SCROLLER, 4);
|
writeVocab(CAT_INV_SCROLLER, 4);
|
||||||
|
@ -573,7 +573,7 @@ void UserInterface::scrollbarChanged() {
|
||||||
Common::Rect r(73, 4, 73 + 9, 4 + 38);
|
Common::Rect r(73, 4, 73 + 9, 4 + 38);
|
||||||
_uiSlots.add(r);
|
_uiSlots.add(r);
|
||||||
_uiSlots.draw(false, false);
|
_uiSlots.draw(false, false);
|
||||||
drawScrolller();
|
drawScroller();
|
||||||
updateRect(r);
|
updateRect(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ private:
|
||||||
/**
|
/**
|
||||||
* Draw the inventory scroller
|
* Draw the inventory scroller
|
||||||
*/
|
*/
|
||||||
void drawScrolller();
|
void drawScroller();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when the inventory scrollbar has changed
|
* Called when the inventory scrollbar has changed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue