MADS: Fix typo in drawScroller()

This commit is contained in:
Strangerke 2014-06-05 00:04:03 +02:00
parent 9460116df1
commit 26e545a9c8
2 changed files with 3 additions and 3 deletions

View file

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

View file

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