diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-06-16 08:49:43 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-06-16 08:49:43 -0400 |
commit | 18377e3c0efe9359c341c0c330f6de1697afb788 (patch) | |
tree | 3ee15915820fa10832dfb17a0cf63382b476de58 /src/world.cpp | |
parent | 1b49be1c9c8e8887564dbb0aa69519bc538d81e7 (diff) |
Changes
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/world.cpp b/src/world.cpp index 450d956..8c6a548 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -524,12 +524,12 @@ void World::draw(Player *p) uint ls = light.size(); - GLfloat *lightCoords = new GLfloat[light.size() * 4]; - GLfloat *lightColors = new GLfloat[light.size() * 4]; - + GLfloat *lightCoords = new GLfloat[ls * 4]; + GLfloat *lightColors = new GLfloat[ls * 4]; + uint lpIndex = 0; uint lcIndex = 0; - + for (uint i = 0; i < ls; i++) { auto &l = light[i]; if (l.belongsTo) { @@ -1482,7 +1482,7 @@ addParticle(float x, float y, float w, float h, float vx, float vy, Color color, void World:: addLight(vec2 loc, float radius, Color color) { - if (light.size() < 64) + if (light.size() < 128) light.emplace_back(loc, radius, color); } |