We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
There is code
private function activateListener( ev:Event ):void { for( var i:int = 0; i < 8; ++i ) { states[ i ] = 0; } }
As I understand you are trying to clear all bytes of states not only first 8. The code should be
private function activateListener( ev:Event ):void { states.position = 0; for( var i:int = 0; i < 8; ++i ) { states.writeUnsignedInt( 0 ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
There is code
As I understand you are trying to clear all bytes of states not only first 8. The code should be
The text was updated successfully, but these errors were encountered: