aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics/transparent_surface.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2014-03-15 15:40:03 +0100
committerEinar Johan Trøan Sømåen2014-03-15 15:40:03 +0100
commit7da44b6b03fedaadd4541ed494517d4fa9f8f2a2 (patch)
tree4103a61f2ac034fb33b0512eae824fc09cf1a095 /engines/wintermute/graphics/transparent_surface.h
parent7363009cd50175d4651bca306c7edfbc18830ca4 (diff)
downloadscummvm-rg350-7da44b6b03fedaadd4541ed494517d4fa9f8f2a2.tar.gz
scummvm-rg350-7da44b6b03fedaadd4541ed494517d4fa9f8f2a2.tar.bz2
scummvm-rg350-7da44b6b03fedaadd4541ed494517d4fa9f8f2a2.zip
WINTERMUTE: Run astyle on transparent_surface.{h,cpp} mainly adding braces.
Diffstat (limited to 'engines/wintermute/graphics/transparent_surface.h')
-rw-r--r--engines/wintermute/graphics/transparent_surface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/graphics/transparent_surface.h b/engines/wintermute/graphics/transparent_surface.h
index 7f6b1ac865..4ad9bf07eb 100644
--- a/engines/wintermute/graphics/transparent_surface.h
+++ b/engines/wintermute/graphics/transparent_surface.h
@@ -74,17 +74,17 @@ struct TransparentSurface : public Graphics::Surface {
ALPHA_FULL = 2
};
- #ifdef SCUMM_LITTLE_ENDIAN
+#ifdef SCUMM_LITTLE_ENDIAN
static const int kAIndex = 0;
static const int kBIndex = 1;
static const int kGIndex = 2;
static const int kRIndex = 3;
- #else
+#else
static const int kAIndex = 3;
static const int kBIndex = 2;
static const int kGIndex = 1;
static const int kRIndex = 0;
- #endif
+#endif
static const int kBShift = 8;//img->format.bShift;
static const int kGShift = 16;//img->format.gShift;