diff --git a/GameVersion.cpp b/GameVersion.cpp index cbf84660..c92ff0a6 100644 --- a/GameVersion.cpp +++ b/GameVersion.cpp @@ -23,7 +23,7 @@ INT16 zVersionLabel[256] = { L"Beta v. 0.98" }; #else //RELEASE BUILD VERSION - INT16 zVersionLabel[256] = { L"Release v1.13.208" }; + INT16 zVersionLabel[256] = { L"Release v1.13.212" }; #endif diff --git a/TileEngine/Tile Animation.cpp b/TileEngine/Tile Animation.cpp index 96fff437..12e80697 100644 --- a/TileEngine/Tile Animation.cpp +++ b/TileEngine/Tile Animation.cpp @@ -380,7 +380,7 @@ void DeleteAniTile( ANITILE *pAniTile ) break; } - if ( pAniNode->uiFlags & ANITILE_LIGHT && pAniNode->lightSprite > 0 ) + if ( pAniNode->uiFlags & ANITILE_LIGHT && pAniNode->lightSprite >= 0 ) { LightSpriteDestroy(pAniNode->lightSprite); } @@ -613,7 +613,7 @@ void UpdateAniTiles( ) } else { - if ( pNode->uiFlags & ANITILE_LIGHT && pNode->lightSprite > 0 ) + if ( pNode->uiFlags & ANITILE_LIGHT && pNode->lightSprite >= 0 ) { LightSpriteDestroy(pAniNode->lightSprite); }