diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-03-13 13:53:08 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-03-13 13:53:08 +0100 |
commit | 06a16e7fba544844a81eed011bd8b9b6fc92de7d (patch) | |
tree | 0b2d37a385cc3533876764f5ced0055bd24ed312 /osd.c | |
parent | 1c86e0127e8d227313b23f52f7e28526a4e5cc2c (diff) | |
download | vdr-06a16e7fba544844a81eed011bd8b9b6fc92de7d.tar.gz vdr-06a16e7fba544844a81eed011bd8b9b6fc92de7d.tar.bz2 |
Added a missing 'default' case in cPixmapMemory::DrawEllipse()
Diffstat (limited to 'osd.c')
-rw-r--r-- | osd.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 2.17 2011/03/12 15:32:33 kls Exp $ + * $Id: osd.c 2.18 2011/03/13 13:52:01 kls Exp $ */ #include "osd.h" @@ -1394,6 +1394,7 @@ void cPixmapMemory::DrawEllipse(const cRect &Rect, tColor Color, int Quadrants) case -2: DrawRectangle(cRect(x1, cy - y, cx - x - x1 + 1, 1), Color); break; case -3: DrawRectangle(cRect(x1, cy + y, cx - x - x1 + 1, 1), Color); break; case -4: DrawRectangle(cRect(cx + x, cy + y, x2 - x + 1, 1), Color); break; + default: ; } x++; StoppingX += TwoBSquare; |