EgtInterface 1.6t2 :

- aggiunte EgtSetInfoBool, EgtGetInfoBool.
This commit is contained in:
Dario Sassi
2016-08-06 19:17:41 +00:00
parent 863af59651
commit 2a149990be
5 changed files with 27 additions and 5 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ __stdcall EgtLuaCreateGlobTable( const wchar_t* wsVar)
BOOL
__stdcall EgtLuaSetGlobBoolVar( const wchar_t* wsVar, BOOL bVal)
{
return ( ExeLuaSetGlobBoolVar( wstrztoA( wsVar), ( bVal != FALSE ? true : false)) ? TRUE : FALSE) ;
return ( ExeLuaSetGlobBoolVar( wstrztoA( wsVar), ( bVal != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------