Bugfix: Lua shutdown (possible NULL reference)

Russian, French and Polish texts update
Fonts update (for future Italian version)

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@2463 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2008-12-29 14:08:35 +00:00
parent 0e7ecd727c
commit bc7014a079
13 changed files with 363 additions and 303 deletions
+6 -2
View File
@@ -227,6 +227,10 @@ int EvalLua (const wchar_t* buff) {
return TRUE;
}
void ShutdownLua( ) {
lua_close(L);
void ShutdownLua( )
{
if(L)
{
lua_close(L);
}
}