summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorProgramerus <alcadeias95@gmail.com>2012-03-20 18:41:22 +0100
committerProgramerus <alcadeias95@gmail.com>2012-03-20 18:41:22 +0100
commit4856b983102b88fc252a78e5f822d9dd382dfd89 (patch)
tree183af41cf63869824b750234954e81c1c0c3eb48
parent32da2334764db6604087edafbc4086ed2d320efc (diff)
downloadcolobot-4856b983102b88fc252a78e5f822d9dd382dfd89.tar.gz
colobot-4856b983102b88fc252a78e5f822d9dd382dfd89.tar.bz2
colobot-4856b983102b88fc252a78e5f822d9dd382dfd89.zip
Comment fix.
-rw-r--r--src/d3dtextr.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/d3dtextr.cpp b/src/d3dtextr.cpp
index 18b6798..7f977a5 100644
--- a/src/d3dtextr.cpp
+++ b/src/d3dtextr.cpp
@@ -12,7 +12,9 @@
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
-// * along with this program. If not, see http://www.gnu.org/licenses/.//-----------------------------------------------------------------------------
+// * along with this program. If not, see http://www.gnu.org/licenses/.
+
+//-----------------------------------------------------------------------------
// File: D3DTextr.cpp
//
// Desc: Functions to manage textures, including creating (loading from a
@@ -469,7 +471,7 @@ HRESULT TextureContainer::LoadTargaFile( TCHAR* strMetaname, TCHAR* strFilename
for( DWORD i=0; i<(m_dwWidth*m_dwHeight); i++ )
{
//? if( m_pRGBAData[i] & 0x000000ff != 0xff )
- if( (m_pRGBAData[i] & 0x000000ff) != 0xff ) // erreur corrigée !
+ if( (m_pRGBAData[i] & 0x000000ff) != 0xff ) // erreur corrig�e !
{
m_bHasAlpha = TRUE;
break;