summaryrefslogtreecommitdiffstats
path: root/slideshow
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-11 07:09:00 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-11 07:09:00 +0200
commit90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36 (patch)
tree3a1794dc8959386ba70cfa71af7e94118813ff6f /slideshow
parentMakes no sense to 'continue' at the end of the block. (diff)
downloadcore-90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36.tar.gz
core-90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36.zip
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.cxx2
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;