diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-16 11:33:02 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-16 11:33:02 -0400 |
commit | d7efa99f03f9d0eb5d84ed42249f227f13471079 (patch) | |
tree | 1385c96106d7fbb64a6081529255bcc1d2d48664 /include/World.h | |
parent | ba4b5bd76ae9b1fa3e3c862d8672e35b02e1664c (diff) |
shitty bug fixes
Diffstat (limited to 'include/World.h')
-rw-r--r-- | include/World.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/World.h b/include/World.h index fca108d..f6ddbfe 100644 --- a/include/World.h +++ b/include/World.h @@ -18,7 +18,7 @@ private: } __attribute__ ((packed)) *line;
unsigned int lineCount; // Size of line array, calculated in the constructor
unsigned int entCount; // Count of currently bound entities
- void *entity[MAX_ENTITIES];
+ void **entity;
public:
World *behind,*infront; // As in layers
World *toLeft,*toRight; // 'new' worlds (off screen)
|