From 455755328ab22d881ad986b219633d5323ba2848 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Fri, 11 Jan 2019 13:02:33 +0000 Subject: [PATCH] Fix silly bug in remote control. --- MMDVMHost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMDVMHost.cpp b/MMDVMHost.cpp index cbc746b..2ad36b2 100644 --- a/MMDVMHost.cpp +++ b/MMDVMHost.cpp @@ -1678,7 +1678,7 @@ bool CMMDVMHost::isBusy() const void CMMDVMHost::remoteControl() { - if (m_remoteControl != NULL) + if (m_remoteControl == NULL) return; REMOTE_COMMAND command = m_remoteControl->getCommand();