diff options
author | Chris "Koying" Browet <cbro@semperpax.com> | 2014-02-17 14:19:44 +0100 |
---|---|---|
committer | Chris "Koying" Browet <cbro@semperpax.com> | 2014-02-17 14:20:46 +0100 |
commit | 8fbd101b6732fbbcb84d482c256b760515e68ce6 (patch) | |
tree | 9088710cab6a710eac521712652ff3693a12e62c | |
parent | 4af3b544366b93e3b0a5958a5504318611ae4d32 (diff) |
FIX: [droid] logging of python exception
-rw-r--r-- | xbmc/android/activity/XBMCApp.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xbmc/android/activity/XBMCApp.cpp b/xbmc/android/activity/XBMCApp.cpp index 1b95381410..e598df36b6 100644 --- a/xbmc/android/activity/XBMCApp.cpp +++ b/xbmc/android/activity/XBMCApp.cpp @@ -46,6 +46,7 @@ #include "ApplicationMessenger.h" #include "utils/StringUtils.h" #include "AppParamParser.h" +#include "XbmcContext.h" #include <android/bitmap.h> #include "android/jni/JNIThreading.h" #include "android/jni/BroadcastReceiver.h" @@ -251,7 +252,8 @@ void CXBMCApp::run() int status = 0; SetupEnv(); - + XBMC::Context context; + m_initialVolume = GetSystemVolume(); CJNIIntent startIntent = getIntent(); |