summaryrefslogtreecommitdiff
path: root/display.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-10-27 18:08:03 +0000
committerlordjaxom <lordjaxom>2004-10-27 18:08:03 +0000
commiteb2f2c9600e8f69788232582191b141002bcd522 (patch)
tree4510197a5afd5e657e42421eb96820134e916c6b /display.c
parent5071a1754f3db0adcf477ecf8e5b2a818d1935bd (diff)
downloadvdr-plugin-text2skin-eb2f2c9600e8f69788232582191b141002bcd522.tar.gz
vdr-plugin-text2skin-eb2f2c9600e8f69788232582191b141002bcd522.tar.bz2
- fixed ugly race conditions that appears to occur more often with VDR >= 1.3.14v0.0.8.1
Diffstat (limited to 'display.c')
-rw-r--r--display.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/display.c b/display.c
index efb875b..e2cdbc8 100644
--- a/display.c
+++ b/display.c
@@ -53,7 +53,9 @@ void cText2SkinDisplayChannel::SetMessage(eMessageType Type, const char *Text) {
void cText2SkinDisplayChannel::Flush(void) {
if (mDirty) {
+ Dprintf("Flushing\n");
mRender->Flush();
+ Dprintf("Flushing done\n");
mDirty = false;
}
}