diff options
author | lordjaxom <lordjaxom> | 2004-10-27 18:08:03 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-10-27 18:08:03 +0000 |
commit | eb2f2c9600e8f69788232582191b141002bcd522 (patch) | |
tree | 4510197a5afd5e657e42421eb96820134e916c6b /display.c | |
parent | 5071a1754f3db0adcf477ecf8e5b2a818d1935bd (diff) | |
download | vdr-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; } } |