diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2016-08-22 20:41:52 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2016-08-22 20:41:52 +0200 |
commit | 7dc0f007edcafeb8868d81a6ac5c366b4ad28484 (patch) | |
tree | 914ba87ed9d31b0c04d80d89ac8371a5a41b871c /displayreplay.c | |
parent | 61bfb702539e3337801c09d276ded41536fd3742 (diff) | |
download | skin-flatplus-7dc0f007edcafeb8868d81a6ac5c366b4ad28484.tar.gz skin-flatplus-7dc0f007edcafeb8868d81a6ac5c366b4ad28484.tar.bz2 |
fix display replay - preload images
Diffstat (limited to 'displayreplay.c')
-rw-r--r-- | displayreplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/displayreplay.c b/displayreplay.c index ba055b47..ba97ccf9 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -603,12 +603,12 @@ void cFlatDisplayReplay::Flush(void) { void cFlatDisplayReplay::PreLoadImages(void) { imgLoader.LoadIcon("rewind", fontHeight, fontHeight); imgLoader.LoadIcon("pause", fontHeight, fontHeight); - imgLoader.LoadIcon("play_sel", fontHeight, fontHeight); + imgLoader.LoadIcon("play", fontHeight, fontHeight); imgLoader.LoadIcon("forward", fontHeight, fontHeight); - imgLoader.LoadIcon("pause_sel", fontHeight, fontHeight); - imgLoader.LoadIcon("forward_sel", fontHeight, fontHeight); imgLoader.LoadIcon("rewind_sel", fontHeight, fontHeight); imgLoader.LoadIcon("pause_sel", fontHeight, fontHeight); + imgLoader.LoadIcon("pause_sel", fontHeight, fontHeight); + imgLoader.LoadIcon("forward_sel", fontHeight, fontHeight); imgLoader.LoadIcon("recording_cutted_extra", fontHeight, fontHeight); imgLoader.LoadIcon("43", 999, fontSmlHeight); |