aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui_lol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/gui_lol.cpp')
-rw-r--r--engines/kyra/gui_lol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp
index 4f8c373fd2..632d4c38b3 100644
--- a/engines/kyra/gui_lol.cpp
+++ b/engines/kyra/gui_lol.cpp
@@ -2291,7 +2291,7 @@ int GUI_LoL::redrawShadedButtonCallback(Button *button) {
if (!_displayMenu || _vm->gameFlags().use16ColorMode)
return 0;
- _screen->drawShadedBox(button->x, button->y, button->x + button->width, button->y + button->height, 223, 227, Screen::kShadeTypeLol);
+ _screen->drawShadedBox(button->x, button->y, button->x + button->width, button->y + button->height, 223, 227);
return 0;
}
@@ -2465,7 +2465,7 @@ int GUI_LoL::runMenu(Menu &menu) {
int my = d->sy - 1;
int mw = (d->w << 3) + 1;
int mh = d->h + 1;
- _screen->drawShadedBox(mx, my, mx + mw, my + mh, 227, 223, Screen::kShadeTypeLol);
+ _screen->drawShadedBox(mx, my, mx + mw, my + mh, 227, 223);
int pg = _screen->setCurPage(0);
_vm->_txt->clearDim(8);
textCursorTimer = 0;