aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-06-16 08:49:43 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-06-16 08:49:43 -0400
commit18377e3c0efe9359c341c0c330f6de1697afb788 (patch)
tree3ee15915820fa10832dfb17a0cf63382b476de58 /src/world.cpp
parent1b49be1c9c8e8887564dbb0aa69519bc538d81e7 (diff)
Changes
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp10
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);
}