diff options
author | Adrian Frühwirth | 2018-04-18 20:15:31 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-18 20:18:05 +0200 |
commit | fd4f9c1f2c5647dd889747d0bbfae027ae76c4fd (patch) | |
tree | c27d375cad50c6e7057698577d50f55c1c84c4a5 /engines/sword25 | |
parent | b17cac80294b15636f8d6df85666b55bd6936b32 (diff) | |
download | scummvm-rg350-fd4f9c1f2c5647dd889747d0bbfae027ae76c4fd.tar.gz scummvm-rg350-fd4f9c1f2c5647dd889747d0bbfae027ae76c4fd.tar.bz2 scummvm-rg350-fd4f9c1f2c5647dd889747d0bbfae027ae76c4fd.zip |
JANITORIAL: Fix whitespace
Diffstat (limited to 'engines/sword25')
-rw-r--r-- | engines/sword25/gfx/graphicengine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sword25/gfx/graphicengine.cpp b/engines/sword25/gfx/graphicengine.cpp index e1b0d55923..ca1f37c9d3 100644 --- a/engines/sword25/gfx/graphicengine.cpp +++ b/engines/sword25/gfx/graphicengine.cpp @@ -373,10 +373,10 @@ bool GraphicEngine::saveThumbnailScreenshot(const Common::String &filename) { void GraphicEngine::ARGBColorToLuaColor(lua_State *L, uint color) { lua_Number components[4] = { - (lua_Number)((color >> 16) & 0xff), // Red - (lua_Number)((color >> 8) & 0xff), // Green - (lua_Number)(color & 0xff), // Blue - (lua_Number)(color >> 24), // Alpha + (lua_Number)((color >> 16) & 0xff), // Red + (lua_Number)((color >> 8) & 0xff), // Green + (lua_Number)( color & 0xff), // Blue + (lua_Number)( color >> 24), // Alpha }; lua_newtable(L); |