diff options
author | Joakim Plate <elupus@ecce.se> | 2012-09-10 23:09:57 +0300 |
---|---|---|
committer | Joakim Plate <elupus@ecce.se> | 2012-09-10 23:09:57 +0300 |
commit | acbdf0a99b5f10151ddc2f9cdbdfe1ee0ed56d95 (patch) | |
tree | 9116b9b982a7168bf20c296bdeef27871a5ceee4 | |
parent | 98ef39eaae2c8893647fe0afd0f0ef91135728f3 (diff) |
Invalid return value for GUIWindow::Initialize
-rw-r--r-- | xbmc/guilib/GUIWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/guilib/GUIWindow.cpp b/xbmc/guilib/GUIWindow.cpp index 4566162c5d..4a69d91ac5 100644 --- a/xbmc/guilib/GUIWindow.cpp +++ b/xbmc/guilib/GUIWindow.cpp @@ -788,7 +788,7 @@ bool CGUIWindow::Initialize() if (!g_windowManager.Initialized()) return false; // can't load if we have no skin yet if(m_windowLoaded) - return false; + return true; if(g_application.IsCurrentThread()) return Load(GetProperty("xmlfile").asString()); else |