summaryrefslogtreecommitdiff
path: root/screen.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-05-30 09:23:41 +0000
committerlordjaxom <lordjaxom>2005-05-30 09:23:41 +0000
commitf7780da63dbc6fc2715cb364b68f756c4165718c (patch)
tree44029b433c5b8815609a1e3a56b5324149b72db6 /screen.c
parent5a24861282fe7a9394cc8fc17287dd00b062a94d (diff)
downloadvdr-plugin-text2skin-f7780da63dbc6fc2715cb364b68f756c4165718c.tar.gz
vdr-plugin-text2skin-f7780da63dbc6fc2715cb364b68f756c4165718c.tar.bz2
- fixed a race condition (thanks to Reinhard Nissl for pointing this out)
- updated finnish translations (thanks to Rolf Ahrenberg)
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index e0fc2c6..3412da4 100644
--- a/screen.c
+++ b/screen.c
@@ -1,5 +1,5 @@
/*
- * $Id: screen.c,v 1.3 2005/01/26 20:42:21 lordjaxom Exp $
+ * $Id: screen.c,v 1.4 2005/05/30 09:23:41 lordjaxom Exp $
*/
#include "screen.h"
@@ -65,7 +65,7 @@ void cText2SkinScreen::DrawBitmap(int x, int y, const cBitmap &Bitmap, const tCo
#ifndef DIRECTBLIT
for (int i = 0; i < mNumRegions; ++i)
DrawBitmapOverlay(*mRegions[i], x, y, (cBitmap&)Bitmap, ColorMask);
- //mRegions[i]->DrawBitmap(x, y, Bitmap, ColorFg, ColorBg);
+ //mRegions[i]->DrawBitmap(x, y, Bitmap);
#else
mOsd->DrawBitmap(x, y, Bitmap, ColorFg, ColorBg);
#endif