diff options
author | Christian Völlinger <zerov83@gmail.com> | 2014-01-06 12:00:02 +0100 |
---|---|---|
committer | Christian Völlinger <zerov83@gmail.com> | 2014-01-06 12:00:02 +0100 |
commit | d4649f5f68226bf2c92415b401194a67e5749d5e (patch) | |
tree | 5e03d4180946f24571c0a9c6c96bac264730b4b0 /ambiservice.c | |
parent | 00e51c9708642efff7c23f235921a324e1df9a37 (diff) | |
download | vdr-plugin-boblight-d4649f5f68226bf2c92415b401194a67e5749d5e.tar.gz vdr-plugin-boblight-d4649f5f68226bf2c92415b401194a67e5749d5e.tar.bz2 |
Performance improvements
Fixes some OSD Bugs
Fixes bug in loading settings
Diffstat (limited to 'ambiservice.c')
-rw-r--r-- | ambiservice.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ambiservice.c b/ambiservice.c index 544095c..95b40fe 100644 --- a/ambiservice.c +++ b/ambiservice.c @@ -31,7 +31,10 @@ const char* cAmbiService::viewModes[] = "detached" }; -const char* cAmbiService::toName(ViewMode vm) +const char* cAmbiService::cineBars[] = { - return viewModes[vm]; -} + "None", + "Horizontal", + "Vertical", + "Both" +}; |