aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2014-06-20 12:55:42 +0300
committerEugene Sandulenko2014-06-20 12:55:42 +0300
commit9dcae18d27df0997e4cab29b1787dcdf02b0cfc9 (patch)
tree1de7c12c97283de09bd2eb54139668736f2ce112 /engines
parent6bffa2a82476d85ab973daff4b0d53e86469e46f (diff)
downloadscummvm-rg350-9dcae18d27df0997e4cab29b1787dcdf02b0cfc9.tar.gz
scummvm-rg350-9dcae18d27df0997e4cab29b1787dcdf02b0cfc9.tar.bz2
scummvm-rg350-9dcae18d27df0997e4cab29b1787dcdf02b0cfc9.zip
FULLPIPE: Implement Bitmap::flipVertical()
Diffstat (limited to 'engines')
-rw-r--r--engines/fullpipe/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 5e68adcb21..d465bf210a 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -1133,7 +1133,7 @@ Bitmap *Bitmap::reverseImage(bool flip) {
}
Bitmap *Bitmap::flipVertical() {
- warning("STUB: Bitmap::flipVertical()");
+ _flipping = Graphics::FLIP_V;
return this;
}