diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-11 07:09:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-11 07:09:00 +0200 |
commit | 90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36 (patch) | |
tree | 3a1794dc8959386ba70cfa71af7e94118813ff6f /slideshow | |
parent | 6e0b18ddde4310f85d3d6b7c27a93f78b541d976 (diff) |
I meant -1 of course, not -127
(As the signed char equivalent of 255.)
Change-Id: Iefb3ebdcf324f0a1925bb3e5d01d7d86e5c62482
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx index 2dd366f5db70..e1260d383de8 100644 --- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx +++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx @@ -1242,7 +1242,7 @@ namespace *pColors++ = vcl::unotools::toByteColor(pIn->Red); *pColors++ = vcl::unotools::toByteColor(pIn->Green); *pColors++ = vcl::unotools::toByteColor(pIn->Blue); - *pColors++ = -127; + *pColors++ = -1; ++pIn; } return aRes; |