Skip to content

Commit

Permalink
[rbp] dissable AE on the PI
Browse files Browse the repository at this point in the history
  • Loading branch information
huceke committed Sep 4, 2012
1 parent 4318e82 commit 42171f4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions xbmc/cores/AudioEngine/AEFactory.cpp
Expand Up @@ -43,6 +43,10 @@ IAE *CAEFactory::GetEngine()

bool CAEFactory::LoadEngine()
{
#if defined(TARGET_RASPBERRY_PI)
return true;
#endif

bool loaded = false;

std::string engine;
Expand Down Expand Up @@ -115,6 +119,10 @@ void CAEFactory::UnLoadEngine()

bool CAEFactory::StartEngine()
{
#if defined(TARGET_RASPBERRY_PI)
return true;
#endif

if (!AE)
return false;

Expand Down

0 comments on commit 42171f4

Please sign in to comment.