The print() function in Lua scripts now outputs to Rainmeter log (an alternative to the TO.LuaLog() function).

This commit is contained in:
Birunthan Mohanathas
2011-01-30 13:04:17 +00:00
parent 251beb9e3a
commit a69e2e91d2
6 changed files with 25 additions and 29 deletions

View File

@ -17,7 +17,7 @@ lua_State* LuaManager::m_pState = 0;
void LuaManager::Init()
{
if(m_pState == 0)
if (m_pState == 0)
{
// initialize Lua
m_pState = lua_open();