summaryrefslogtreecommitdiffstats
path: root/src/autotower.cpp
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-03-23 19:43:42 +0100
committerPiotr Dziwinski <piotrdz@gmail.com>2012-03-23 19:43:42 +0100
commit97edcc167442dbb794191cbb2f722e0a02f1d159 (patch)
tree857af347c8072e33df52632f16f835bc8f4e16a8 /src/autotower.cpp
parent02f1ec0b4a1798bd2eac5171c848ba109f920f0e (diff)
downloadcolobot-97edcc167442dbb794191cbb2f722e0a02f1d159.tar.gz
colobot-97edcc167442dbb794191cbb2f722e0a02f1d159.tar.bz2
colobot-97edcc167442dbb794191cbb2f722e0a02f1d159.zip
Fixes in auto* modules
- fixed missing #includes and case in file names - fixed syntax errors reported by GCC - did not fix issues #8 and #17
Diffstat (limited to 'src/autotower.cpp')
-rw-r--r--src/autotower.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/autotower.cpp b/src/autotower.cpp
index 55b196b..7dcdb05 100644
--- a/src/autotower.cpp
+++ b/src/autotower.cpp
@@ -22,8 +22,8 @@
#include <d3d.h>
#include "struct.h"
-#include "D3DEngine.h"
-#include "D3DMath.h"
+#include "d3dengine.h"
+#include "d3dmath.h"
#include "global.h"
#include "event.h"
#include "misc.h"
@@ -74,7 +74,7 @@ CAutoTower::CAutoTower(CInstanceManager* iMan, CObject* object)
CAutoTower::~CAutoTower()
{
- CAuto::~CAuto();
+ this->CAuto::~CAuto();
}