aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--addons/skin.estuary/xml/GameOSD.xml2
-rw-r--r--xbmc/guilib/GUIControlFactory.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/addons/skin.estuary/xml/GameOSD.xml b/addons/skin.estuary/xml/GameOSD.xml
index 6d7c302bce..b808abaa8f 100644
--- a/addons/skin.estuary/xml/GameOSD.xml
+++ b/addons/skin.estuary/xml/GameOSD.xml
@@ -37,7 +37,7 @@
<left>30</left>
<width>640</width>
<height>640</height>
- <controllerId>game.controller.snes</controllerId>
+ <controllerid>game.controller.snes</controllerid>
</control>
<control type="textbox">
<description>Additional help text. This will be removed in future versions.</description>
diff --git a/xbmc/guilib/GUIControlFactory.cpp b/xbmc/guilib/GUIControlFactory.cpp
index d58f3c249d..3e6b769d73 100644
--- a/xbmc/guilib/GUIControlFactory.cpp
+++ b/xbmc/guilib/GUIControlFactory.cpp
@@ -1568,12 +1568,12 @@ CGUIControl* CGUIControlFactory::Create(int parentID, const CRect &rect, TiXmlEl
// Set controller ID
GUIINFO::CGUIInfoLabel controllerId;
- GetInfoLabel(pControlNode, "controllerId", controllerId, parentID);
+ GetInfoLabel(pControlNode, "controllerid", controllerId, parentID);
gcontrol->SetControllerID(controllerId);
// Set controller address
GUIINFO::CGUIInfoLabel controllerAddress;
- GetInfoLabel(pControlNode, "controllerAddress", controllerAddress, parentID);
+ GetInfoLabel(pControlNode, "controlleraddress", controllerAddress, parentID);
gcontrol->SetControllerAddress(controllerAddress);
break;