diff options
Diffstat (limited to 'dxr3interface.c')
-rw-r--r-- | dxr3interface.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dxr3interface.c b/dxr3interface.c index c9688ad..99684ad 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -264,6 +264,12 @@ void cDxr3Interface::SetAspectRatio(uint32_t ratio) //! set playing mode and start sync engine void cDxr3Interface::SetPlayMode() { + // this is the case, when SVDRP command DOF was used and + // should be ignored. + if (m_fdControl == -1) { + return; + } + em8300_register_t reg; int ioval; |