diff options
author | Memphiz <memphis@machzwo.de> | 2012-05-31 09:48:12 -0700 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-05-31 09:48:12 -0700 |
commit | 1495cbeb771bb5dde20a83a50d23c89a50e6f5c1 (patch) | |
tree | 0ddb1648557b5a5f561f0e29db5d9e75a8f742e6 | |
parent | 78841bddc896570c7ff05075fc964e8ed18a9c44 (diff) | |
parent | 42cda748e67c05120a50db36152443a98f876452 (diff) |
Merge pull request #985 from qwerdy/masterFrodo_alpha2
Fixes Ticket #12760, Resend all LCD Lines after Screensaver mode
-rw-r--r-- | xbmc/linux/XLCDproc.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xbmc/linux/XLCDproc.cpp b/xbmc/linux/XLCDproc.cpp index 01f59ad421..3685bef332 100644 --- a/xbmc/linux/XLCDproc.cpp +++ b/xbmc/linux/XLCDproc.cpp @@ -220,6 +220,9 @@ void XLCDproc::SetBackLight(int iLight) cmd.append("widget_del xbmc line2\n"); cmd.append("widget_del xbmc line3\n"); cmd.append("widget_del xbmc line4\n"); + + for(int i=0; i<4; i++) + m_strLine[i] = ""; } else if (iLight > 0) { |