diff options
-rw-r--r-- | xbmc/peripherals/Peripherals.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/peripherals/Peripherals.cpp b/xbmc/peripherals/Peripherals.cpp index 0abf0ef0d4..ad59c440e6 100644 --- a/xbmc/peripherals/Peripherals.cpp +++ b/xbmc/peripherals/Peripherals.cpp @@ -384,7 +384,8 @@ void CPeripherals::OnDeviceDeleted(const CPeripheralBus &bus, const CPeripheral { OnDeviceChanged(); - bool bNotify = true; + //! @todo Improve device notifications in v18 + bool bNotify = false; // don't show a notification for emulated peripherals if (peripheral.Type() == PERIPHERAL_JOYSTICK_EMULATION) //! @todo Change to peripheral.IsEmulated() |