error LoadByteCode

Started by
2 comments, last by FDsagizi 12 years ago
Hello!

Assertion failed: stackSize[pos] == currStackSize, file ..\..\source\as_restore.cpp, line 2100

[color=#000020]asIBinaryStream: http://www.everfall....hp?igbsaw704fb4

this code load ok:


void update()
{
Node @node;
if( node.rot().pitch() > 70 ){ }
}


but this, error:


void update()
{
Node @node;
if( node.rot().pitch() > 70 ){ }
else if( node.rot().pitch() < -30 ){ }
}


.pitch() - return float.

C++ code Node and Quat: http://www.everfall....hp?nh6648t6qq0b
Advertisement
Thanks. I'll look into it.

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

What version are you using?

A bug very similar to this was fixed in revision 1240 (still compatible with version 2.23.0).

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

#define ANGELSCRIPT_VERSION 22300
#define ANGELSCRIPT_VERSION_STRING "2.23.0 WIP"

What version are you using?

A bug very similar to this was fixed in revision 1240 (still compatible with version 2.23.0).



Yes there is I used the old version 1234!

Many thanks!

This topic is closed to new replies.

Advertisement