1
0

Fixed Lua string return values.

Fixes #773.
This commit is contained in:
madmaxoft 2014-03-12 14:11:28 +01:00
parent 0c15fdf7b0
commit 5d7df54e35

View File

@ -742,10 +742,6 @@ void cLuaState::GetStackValue(int a_StackPos, AString & a_Value)
{
a_Value.assign(data, len);
}
else
{
a_Value.clear();
}
}