diff --git a/Minecraft.Client/Common/UI/UIControl_MultiList.cpp b/Minecraft.Client/Common/UI/UIControl_MultiList.cpp index 137307d0..f5ef9cfb 100644 --- a/Minecraft.Client/Common/UI/UIControl_MultiList.cpp +++ b/Minecraft.Client/Common/UI/UIControl_MultiList.cpp @@ -139,7 +139,7 @@ void UIControl_MultiList::AddNewTextInput(UIString label, int id) value[1].type = IGGY_DATATYPE_number; value[1].number = id; - IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_initFunc, 2, value); + auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_initFunc, 2, value); UIControl_List::addElement(UIControl::eTextInput, id); } @@ -166,7 +166,7 @@ void UIControl_MultiList::SetCheckboxValue(int id, bool checked, bool applyImmed value[1].type = IGGY_DATATYPE_boolean; value[1].boolval = checked; - IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetCheckBox, 2, value); + auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetCheckBox, 2, value); /* } else @@ -211,7 +211,7 @@ void UIControl_MultiList::SetSliderValue(int index, int value2, bool applyImmedi value[1].type = IGGY_DATATYPE_number; value[1].number = value2; - IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetSliderValue, 2, value); + auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetSliderValue, 2, value); /* } else