aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoakim Plate <elupus@ecce.se>2012-09-10 23:09:57 +0300
committerJoakim Plate <elupus@ecce.se>2012-09-10 23:09:57 +0300
commitacbdf0a99b5f10151ddc2f9cdbdfe1ee0ed56d95 (patch)
tree9116b9b982a7168bf20c296bdeef27871a5ceee4
parent98ef39eaae2c8893647fe0afd0f0ef91135728f3 (diff)
Invalid return value for GUIWindow::Initialize
-rw-r--r--xbmc/guilib/GUIWindow.cpp2
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