diff options
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)
|