summaryrefslogtreecommitdiffstats
path: root/src/taskspiderexplo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/taskspiderexplo.cpp')
-rw-r--r--src/taskspiderexplo.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/taskspiderexplo.cpp b/src/taskspiderexplo.cpp
index 26c06e6..b456273 100644
--- a/src/taskspiderexplo.cpp
+++ b/src/taskspiderexplo.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/.// taskspiderexplo.cpp
#define STRICT
#define D3D_OVERLOADS
@@ -56,14 +56,14 @@ CTaskSpiderExplo::~CTaskSpiderExplo()
}
-// Gestion d'un �v�nement.
+// Gestion d'un événement.
BOOL CTaskSpiderExplo::EventProcess(const Event &event)
{
if ( m_engine->RetPause() ) return TRUE;
if ( event.event != EVENT_FRAME ) return TRUE;
- // Objet momentan�ment immobile (fourmi sur le dos) ?
+ // Objet momentanément immobile (fourmi sur le dos) ?
if ( m_object->RetFixed() )
{
m_bError = TRUE;
@@ -76,7 +76,7 @@ BOOL CTaskSpiderExplo::EventProcess(const Event &event)
}
-// Assigne le but � atteindre.
+// Assigne le but à atteindre.
Error CTaskSpiderExplo::Start()
{
@@ -90,7 +90,7 @@ Error CTaskSpiderExplo::Start()
return ERR_OK;
}
-// Indique si l'action est termin�e.
+// Indique si l'action est terminée.
Error CTaskSpiderExplo::IsEnded()
{
@@ -107,7 +107,7 @@ Error CTaskSpiderExplo::IsEnded()
if ( m_time < 1.0f ) return ERR_CONTINUE;
pyro = new CPyro(m_iMan);
- pyro->Create(PT_SPIDER, m_object); // l'araign�e explose (suicide)
+ pyro->Create(PT_SPIDER, m_object); // l'araignée explose (suicide)
Abort();
return ERR_STOP;