AngelScript Crashes

Started by
1 comment, last by Cyphron 12 years, 4 months ago
Hello,

Im sorry for my englisch skills.

My problem is that AngleScript crashes every time except the script doesnt interact with my c++ functions.
"void main() { int a = 1; int b = 2; }"<-Ok
"void main() { int a = 1; int b = 2; int c = plus(a, b); }"<-Crash

plus is a function in my C++ code.

i bind with:
engine->RegisterGlobalFunction("int plus(int, int)", asFUNCTIONPR(plus, (int, int), int), asCALL_CDECL);

my C++ function:
int plus(int a, int b)
{
return a+b;
}


I Compiled AngelScript 2.22.0 with MinGW 4.6.1


Thanks for any support


Edit:

Ok i fixed the Problem!
Advertisement
:)

Would you mind sharing what the problem was?

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


:)

Would you mind sharing what the problem was?


Sorry but i dont really know :(

I just write it again.

This topic is closed to new replies.

Advertisement