aboutsummaryrefslogtreecommitdiff
path: root/engines/access/asurface.cpp
diff options
context:
space:
mode:
authorStrangerke2015-01-15 08:23:55 +0100
committerStrangerke2015-01-15 08:23:55 +0100
commit0c14e42bd2dcbbc1029b835cd379c163345468ad (patch)
treea2db968158eae7a994152fcf5bbe8994b2a10a49 /engines/access/asurface.cpp
parentf1aa191f8c3acd0bfa259c4239bc6aadc9c9b0b0 (diff)
downloadscummvm-rg350-0c14e42bd2dcbbc1029b835cd379c163345468ad.tar.gz
scummvm-rg350-0c14e42bd2dcbbc1029b835cd379c163345468ad.tar.bz2
scummvm-rg350-0c14e42bd2dcbbc1029b835cd379c163345468ad.zip
ACCESS: MM - Implement up and down arrows in BubbleBox
Diffstat (limited to 'engines/access/asurface.cpp')
-rw-r--r--engines/access/asurface.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/access/asurface.cpp b/engines/access/asurface.cpp
index 1417b0e5f1..1029c355da 100644
--- a/engines/access/asurface.cpp
+++ b/engines/access/asurface.cpp
@@ -320,6 +320,10 @@ void ASurface::drawLine(int x1, int y1, int x2, int y2, int col) {
Graphics::Surface::drawLine(x1, y1, x2, y2, col);
}
+void ASurface::drawLine() {
+ Graphics::Surface::drawLine(_orgX1, _orgY1, _orgX2, _orgY1, _lColor);
+}
+
void ASurface::drawBox() {
Graphics::Surface::drawLine(_orgX1, _orgY1, _orgX2, _orgY1, _lColor);
Graphics::Surface::drawLine(_orgX1, _orgY2, _orgX2, _orgY2, _lColor);