mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Script: Return types are now checked explicitly. As a result, 'return 5' and 'return "5"' are not equal any longer. Only the former will respect NumOfDecimals, Scale, etc. now.
- NowPlayingPlugin: Accidentally removed "Previous" bang in r880, fixed.
This commit is contained in:
@@ -100,11 +100,7 @@ bool CMeasureScript::Update()
|
||||
{
|
||||
m_ValueType = m_LuaScript->RunFunctionWithReturn(g_UpdateFunctionName, m_Value, m_StringValue);
|
||||
|
||||
if (m_ValueType == LUA_TSTRING)
|
||||
{
|
||||
m_Value = 0;
|
||||
}
|
||||
else if (m_ValueType == LUA_TNIL && m_HasGetStringFunction)
|
||||
if (m_ValueType == LUA_TNIL && m_HasGetStringFunction)
|
||||
{
|
||||
// For backwards compatbility
|
||||
m_ValueType = m_LuaScript->RunFunctionWithReturn(g_GetStringFunctionName, m_Value, m_StringValue);
|
||||
|
Reference in New Issue
Block a user