summaryrefslogtreecommitdiffstats
path: root/src/d3dtextr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/d3dtextr.cpp')
-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;