FileStream bug on XNA target

Monkey Forums/Monkey Bug Reports/FileStream bug on XNA target

benmc(Posted 2013) [#1]
Currently, when you compile the Filetest for the XNA target, you get the error:

error CS0051: Inconsistent accessibility

However, if I can get it to work if I open the project in Visual Studio and change:

class BBThread {
to
public class BBThread {

And then I have to change:

public virtual bool _LoadAsync( String path,BBThread thread ){
if( _Load( path ) ) thread.SetResult( this );
}

to

public virtual bool _LoadAsync( String path,BBThread thread ){
if( _Load( path ) ) thread.SetResult( this );
return false;
}


Once I make these changes, it runs fine. I'm not sure if this is the proper way to make these changes however, so I thought I'd submit it here for review.


benmc(Posted 2013) [#2]
Oops, didn't see the other thread about this same issue here:

http://www.monkeycoder.co.nz/Community/posts.php?topic=5656


marksibly(Posted 2013) [#3]
Should be fixed in v73b...


benmc(Posted 2013) [#4]
Great, thanks, I'm still on v71 (will upgrade)