fixed powerdown/blocked cursors

This commit is contained in:
Chris Forbes
2010-01-27 22:09:30 +13:00
parent 059290e8de
commit 19fadc3e0a
6 changed files with 7 additions and 5 deletions

View File

@@ -31,8 +31,8 @@ namespace OpenRa.FileFormats
{
static void ReplicatePrevious( byte[] dest, int destIndex, int srcIndex, int count )
{
if( srcIndex >= destIndex )
throw new NotImplementedException( string.Format( "srcIndex >= destIndex {0} {1}", srcIndex, destIndex ) );
if( srcIndex > destIndex )
throw new NotImplementedException( string.Format( "srcIndex > destIndex {0} {1}", srcIndex, destIndex ) );
if( destIndex - srcIndex == 1 )
{