From: John L. <jla...@gm...> - 2006-03-13 23:31:55
|
On 3/13/06, thegeek <ok...@on...> wrote: > So far I've been able to upgrade wxLua to lua 5.1, works great except for= some > of the wxlua lua-code, which does ofcourse use table.getn and other depre= cated > functions/syntaxes, but i tested with some of the samples(modified for lu= a 5.1) > and it worked with no problem. > So I have all the wxlua libs compiled with lua 5.1 and just need to integ= rate > this into the lslua litestep plugin. This could prove to be a little beyo= nd me, There were no changes in the C code? That's good to know. > so I'll probably be looking forward to your next release. > Good luck:) I've already updated some of the lua code to work with 5.1, it was suprisingly easy with this little function. :) if table.getn =3D=3D nil then function table.getn(atable) local count =3D 0 while atable[count+1] do count =3D count + 1 end return count end end I'll have to wait 'till next week to try the C code update. Regards, John Labenski |