diff options
author | Eugene Sandulenko | 2014-06-20 12:55:42 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-06-20 12:55:42 +0300 |
commit | 9dcae18d27df0997e4cab29b1787dcdf02b0cfc9 (patch) | |
tree | 1de7c12c97283de09bd2eb54139668736f2ce112 /engines | |
parent | 6bffa2a82476d85ab973daff4b0d53e86469e46f (diff) | |
download | scummvm-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.cpp | 2 |
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; } |