diff options
Diffstat (limited to 'engines/titanic')
-rw-r--r-- | engines/titanic/support/video_surface.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/support/video_surface.cpp b/engines/titanic/support/video_surface.cpp index f88f05327f..1991d7423f 100644 --- a/engines/titanic/support/video_surface.cpp +++ b/engines/titanic/support/video_surface.cpp @@ -511,8 +511,10 @@ uint16 OSVideoSurface::getPixel(const Common::Point &pt) { if (pt.x >= 0 && pt.y >= 0 && pt.x < getWidth() && pt.y < getHeight()) { if (_transparencySurface) { + // WORKAROUND: Original had the setRow _flipVertically check in reverse. + // Pretty sure putting it the way is below is the correct way CTransparencySurface transSurface(&_transparencySurface->rawSurface(), _transparencyMode); - transSurface.setRow(_flipVertically ? pt.y : getHeight() - pt.y - 1); + transSurface.setRow(_flipVertically ? getHeight() - pt.y - 1 : pt.y); transSurface.setCol(pt.x); if (transSurface.isPixelTransparent2()) |