Merge pull request #1396 from MilhouseVH/le8_disable_adsp

kodi: hide ADSP settings
This commit is contained in:
Christian Hewitt 2017-02-27 14:49:11 +04:00 committed by GitHub
commit c6c72837a3
3 changed files with 31 additions and 0 deletions

View File

@ -81,4 +81,12 @@
</category>
</section>
<section id="system">
<category id="audio">
<group id="4">
<visible>false</visible>
</group>
</category>
</section>
</settings>

View File

@ -0,0 +1,22 @@
From ad23989222e80d18343cca113c1d8aa3fd3ac199 Mon Sep 17 00:00:00 2001
From: popcornmix <popcornmix@gmail.com>
Date: Tue, 17 Jan 2017 21:05:26 +0000
Subject: [PATCH] ADSP: Hack - disable
---
xbmc/ServiceManager.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xbmc/ServiceManager.cpp b/xbmc/ServiceManager.cpp
index 091c9a3..22b1910 100644
--- a/xbmc/ServiceManager.cpp
+++ b/xbmc/ServiceManager.cpp
@@ -87,7 +87,7 @@ bool CServiceManager::Init2()
bool CServiceManager::Init3()
{
- m_ADSPManager->Init();
+ //m_ADSPManager->Init();
m_PVRManager->Init();
m_contextMenuManager->Init();
m_gameServices->Init();

View File

@ -5,6 +5,7 @@ TODO=$1
# Drop commits not used
DROP_COMMITS="
UNSTABLE\: This is a placeholder\. Commits after this point are considered experimental\.
ADSP: Hack - disable
"
IFS=$'\n'