diff options
author | scop <scop> | 2009-01-02 22:47:56 +0000 |
---|---|---|
committer | scop <scop> | 2009-01-02 22:47:56 +0000 |
commit | 86154b05dd7c0744cd6aa77aaa94a58f73a50721 (patch) | |
tree | 843cfbceefbc72340f8ace581d9f9e3e705421d0 | |
parent | 36ab0cef0b2bb34d094dd64d06c85e324b1dbb56 (diff) | |
download | vdr-plugin-dxr3-86154b05dd7c0744cd6aa77aaa94a58f73a50721.tar.gz vdr-plugin-dxr3-86154b05dd7c0744cd6aa77aaa94a58f73a50721.tar.bz2 |
Don't exit if setting video mode fails.
-rw-r--r-- | dxr3interface.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dxr3interface.c b/dxr3interface.c index e4c74fa..ee2f432 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -1038,12 +1038,9 @@ void cDxr3Interface::ConfigureDevice() dsyslog("dxr3: configure: video mode: NTSC"); videomode = EM8300_VIDEOMODE_NTSC; } - - // make ioctl if (ioctl(m_fdControl, EM8300_IOCTL_SET_VIDEOMODE, &videomode) == -1) { - esyslog("dxr3: fatal: unable to set video mode: %m"); - exit(1); + esyslog("dxr3: unable to set video mode: %m"); } // set brightness/contrast/saturation |