aboutsummaryrefslogtreecommitdiff
path: root/hgehelp/hgestrings.cpp
diff options
context:
space:
mode:
authorGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-15 02:29:19 +0000
committerGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-15 02:29:19 +0000
commit856c345feca062fdfc0b177e0de25489fb1b0c06 (patch)
tree9018cf4f5245e3b6533e86dfa8ca8486a5859498 /hgehelp/hgestrings.cpp
parentf2ce3ddfcb72fc3026ba85bd41849fa1886877e4 (diff)
downloadbullet-lab-remix-856c345feca062fdfc0b177e0de25489fb1b0c06.tar.xz
Extend hge with a 3D Rotation method, it's not tested yet.
Fix probable compile errors due to includes.
Diffstat (limited to 'hgehelp/hgestrings.cpp')
-rw-r--r--hgehelp/hgestrings.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/hgehelp/hgestrings.cpp b/hgehelp/hgestrings.cpp
index d4c5d2d..6eda71c 100644
--- a/hgehelp/hgestrings.cpp
+++ b/hgehelp/hgestrings.cpp
@@ -7,7 +7,7 @@
*/
-#include "../../include/hgestrings.h"
+#include "hgestrings.h"
#include <ctype.h>
const char STRHEADERTAG[]="[HGESTRINGTABLE]";
@@ -26,7 +26,7 @@ hgeStringTable::hgeStringTable(const char *filename)
NamedString *str;
char str_name[MAXSTRNAMELENGTH];
char *str_value, *pvalue;
-
+
hge=hgeCreate(HGE_VERSION);
strings=0;
@@ -43,7 +43,7 @@ hgeStringTable::hgeStringTable(const char *filename)
if(memcmp(desc, STRHEADERTAG, sizeof(STRHEADERTAG)-1))
{
hge->System_Log(STRFORMATERROR, filename);
- delete[] desc;
+ delete[] desc;
return;
}