diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-01-25 15:09:23 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-01-25 15:09:23 +0100 |
commit | 4fd28707207cd64dd0e5f05c0ee20299390d9cda (patch) | |
tree | a34bf1537306b3977661654559c221ef4975fa6d /osd.c | |
parent | a9e32ad0a5eb288bde5398dc96b6ad9caae64f9f (diff) | |
download | vdr-4fd28707207cd64dd0e5f05c0ee20299390d9cda.tar.gz vdr-4fd28707207cd64dd0e5f05c0ee20299390d9cda.tar.bz2 |
Removed some excess ';'
Diffstat (limited to 'osd.c')
-rw-r--r-- | osd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 4.3 2015/09/10 14:12:06 kls Exp $ + * $Id: osd.c 4.4 2018/01/25 15:09:09 kls Exp $ */ #include "osd.h" @@ -1183,7 +1183,7 @@ void cPixmap::DrawPixmap(const cPixmap *Pixmap, const cRect &Dirty) t0.Shift(-Pixmap->DrawPort().Width(), 0); while (t0.Y() > Pixmap->ViewPort().Top()) t0.Shift(0, -Pixmap->DrawPort().Height()); - cPoint t = t0;; + cPoint t = t0; while (t.Y() <= Pixmap->ViewPort().Bottom()) { while (t.X() <= Pixmap->ViewPort().Right()) { cRect Source = Pixmap->DrawPort(); // assume the entire pixmap needs to be rendered |