mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Script: Improve 6560518
The Unicode state is not tracked using a stack instead of a raw boolean. This means that a Unicode script that e.g. updates a non-Unicode script measure will now work properly.
This commit is contained in:
@ -35,7 +35,7 @@ public:
|
||||
int GetRef() { return m_Ref; }
|
||||
bool IsUnicode() const { return m_Unicode; }
|
||||
|
||||
lua_State* GetState() { return LuaManager::GetState(m_Unicode); }
|
||||
LuaManager::ScopedLuaState GetState() { return LuaManager::GetState(m_Unicode); }
|
||||
|
||||
bool IsFunction(const char* funcName);
|
||||
void RunFunction(const char* funcName);
|
||||
|
Reference in New Issue
Block a user