aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-12-26 18:07:31 +0100
committerEugene Sandulenko2016-12-26 18:07:31 +0100
commite05c57b64c2da6226b4ae8962a958d1c63fd1997 (patch)
tree18f234b09ec46ca8bfbf421231a941913a2ec863
parentdff109caba34fc5bf29d75e4ce85eecf7833f9f7 (diff)
downloadscummvm-rg350-e05c57b64c2da6226b4ae8962a958d1c63fd1997.tar.gz
scummvm-rg350-e05c57b64c2da6226b4ae8962a958d1c63fd1997.tar.bz2
scummvm-rg350-e05c57b64c2da6226b4ae8962a958d1c63fd1997.zip
GRAPHICS: Fix another instance of structures nested in templates
-rw-r--r--graphics/transparent_surface.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/graphics/transparent_surface.cpp b/graphics/transparent_surface.cpp
index bd18e5d052..a0e175efdf 100644
--- a/graphics/transparent_surface.cpp
+++ b/graphics/transparent_surface.cpp
@@ -809,10 +809,6 @@ TransparentSurface *TransparentSurface::scale(uint16 newWidth, uint16 newHeight)
if (filteringMode == FILTER_BILINEAR) {
- // NB: The actual order of these bytes may not be correct, but
- // since all values are treated equal, that does not matter.
- struct tColorRGBA { byte r; byte g; byte b; byte a; };
-
bool flipx = false, flipy = false; // TODO: See mirroring comment in RenderTicket ctor