aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/predictive.cpp
diff options
context:
space:
mode:
authorKari Salminen2007-07-10 18:08:35 +0000
committerKari Salminen2007-07-10 18:08:35 +0000
commit969df42d016ae1fcc528c4c96ba02f1297712816 (patch)
treec5f64d2dbf9d9612819d9fe7a17ed18a58cb3442 /engines/agi/predictive.cpp
parent83e038de191888758fdc2e2d741b12f1c28f7e2b (diff)
downloadscummvm-rg350-969df42d016ae1fcc528c4c96ba02f1297712816.tar.gz
scummvm-rg350-969df42d016ae1fcc528c4c96ba02f1297712816.tar.bz2
scummvm-rg350-969df42d016ae1fcc528c4c96ba02f1297712816.zip
Make AGI's button drawing use AgiButtonStyle. Doesn't use Amiga-style yet. It's next.
svn-id: r28014
Diffstat (limited to 'engines/agi/predictive.cpp')
-rw-r--r--engines/agi/predictive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/predictive.cpp b/engines/agi/predictive.cpp
index 67ebed5f05..2db4b49396 100644
--- a/engines/agi/predictive.cpp
+++ b/engines/agi/predictive.cpp
@@ -200,9 +200,9 @@ bool AgiEngine::predictiveDialog(void) {
color2 = 7;
}
if (i == 14) {
- _gfx->drawButton(bx[i], by[i], modes[mode], i == active, 0, color1, color2);
+ _gfx->drawDefaultStyleButton(bx[i], by[i], modes[mode], i == active, 0, color1, color2);
} else {
- _gfx->drawButton(bx[i], by[i], buttons[i], i == active, 0, color1, color2);
+ _gfx->drawDefaultStyleButton(bx[i], by[i], buttons[i], i == active, 0, color1, color2);
}
}