diff options
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/gui/gui_picture.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/gui/gui_picture.cpp b/engines/sci/gui/gui_picture.cpp index c1df49ad3b..0a4da6acc4 100644 --- a/engines/sci/gui/gui_picture.cpp +++ b/engines/sci/gui/gui_picture.cpp @@ -158,6 +158,10 @@ void SciGuiPicture::drawCel(int16 x, int16 y, byte *pdata, int size) { lasty = MIN<int16>(height + y, _gfx->GetPort()->rect.bottom) + _gfx->GetPort()->top; + // FIXME: ...seems we have to unpack the view and then mirror it on demand to screen + if (_mirroredFlag) + error("mirrored SCI1 picture views are currently not supported"); + switch (_s->resMan->getViewType()) { case kViewVga: case kViewVga11: |