FileStream bug on XNA target
Monkey Forums/Monkey Bug Reports/FileStream bug on XNA target
| ||
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. |
| ||
Oops, didn't see the other thread about this same issue here: http://www.monkeycoder.co.nz/Community/posts.php?topic=5656 |
| ||
Should be fixed in v73b... |
| ||
Great, thanks, I'm still on v71 (will upgrade) |