summaryrefslogtreecommitdiffstats
path: root/src/metafile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/metafile.cpp')
-rw-r--r--src/metafile.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/metafile.cpp b/src/metafile.cpp
index fbac461..77a937c 100644
--- a/src/metafile.cpp
+++ b/src/metafile.cpp
@@ -1,4 +1,4 @@
-// * This file is part of the COLOBOT source code
+// * This file is part of the COLOBOT source code
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
// *
// * This program is free software: you can redistribute it and/or modify
@@ -12,7 +12,7 @@
// * 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/.// metafile.cpp
#define STRICT
#define D3D_OVERLOADS
@@ -189,7 +189,7 @@ int CMetaFile::Open(char *metaname, char *filename)
{
int index, i;
- if ( m_bOpen ) // fichier d�j� ouvert ?
+ if ( m_bOpen ) // fichier déjà ouvert ?
{
Close();
}
@@ -245,7 +245,7 @@ int CMetaFile::RetLength()
return len;
}
-// Positionnement dans le fichier, relatif au d�but.
+// Positionnement dans le fichier, relatif au début.
int CMetaFile::Seek(int offset)
{
@@ -350,7 +350,7 @@ int CMetaFile::MetaOpen(char *metaname)
m_list[i].stream = fopen(metaname, "rb");
if ( m_list[i].stream == 0 ) return -1;
- strcpy(m_list[i].name, metaname); // m�morise le nom
+ strcpy(m_list[i].name, metaname); // mémorise le nom
fread(&m_list[i].total, sizeof(int), 1, m_list[i].stream);
m_list[i].headers = (MetaHeader*)malloc(sizeof(MetaHeader)*m_list[i].total);
@@ -369,7 +369,7 @@ int CMetaFile::MetaOpen(char *metaname)
return -1;
}
-// Cherche si le metafile est d�j� ouvert. Retourne l'index ou -1.
+// Cherche si le metafile est déjà ouvert. Retourne l'index ou -1.
int CMetaFile::MetaSearch(char *metaname)
{