diff options
-rw-r--r-- | xbmc/windowing/X11/XRandR.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/windowing/X11/XRandR.cpp b/xbmc/windowing/X11/XRandR.cpp index 34dbd0b11a..62003f5162 100644 --- a/xbmc/windowing/X11/XRandR.cpp +++ b/xbmc/windowing/X11/XRandR.cpp @@ -94,7 +94,7 @@ bool CXRandR::Query(bool force, int screennum, bool ignoreoff) pclose(file); TiXmlElement *pRootElement = xmlDoc.RootElement(); - if (strcasecmp(pRootElement->Value(), "screen") != screennum) + if (atoi(pRootElement->Attribute("id")) != screennum) { // TODO ERROR return false; |