🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

compilation problem

Started by
1 comment, last by WitchLord 16 years, 6 months ago
Hello! I'm following trunk, r218 has a little issue. as_callfunc_x86.cpp:410

engine->CallFree(descr->parameterTypes[n].GetObjectType(), obj); 
should be

engine->CallFree(obj); 
btw, thank you very much for fixing ExecuteString & config groups. Works nice for me! [Edited by - mono2k on December 29, 2007 2:13:21 AM]
Advertisement
another typo

as_arrayobject.cpp:95
*(asCArrayObject**)gen->GetReturnPointer() = ArrayObjectFactory2(length, ot, obj);


should be

*(asCArrayObject**)gen->GetReturnPointer() = ArrayObjectFactory2(length, ot);

Thanks for letting me know. I've fixed this and checked in the new version in revision 219.

Good to hear the 'ExecuteString no longer locking config groups' change worked out alright.

In the future I'll expand on this and make it possible to dynamically add individual functions and global variables to modules, which would for example allow applications to provide support for self-modifying scripts.

Regards,
Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement