aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-23 22:14:13 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-23 22:14:13 -0400
commitf6a0e340bc82cb5fb96f836686bd59aaffd5db97 (patch)
tree8d7e96bbd997be9d0a1e9bf088689366aeaae96e /src/world.cpp
parent0869328b12ff9b77000915f37443dcf2468d881e (diff)
Fixed text rendering
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/world.cpp b/src/world.cpp
index fb7870d..feff728 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -162,9 +162,9 @@ void World::generateMesh()
glBindBuffer(GL_ARRAY_BUFFER, worldVBO);
glBufferData(GL_ARRAY_BUFFER,
- mesh.size() * sizeof(mesh),
- &mesh.front(),
- GL_STREAM_DRAW);
+ mesh.size() * sizeof(WorldMeshData),
+ mesh.data(),
+ GL_STATIC_DRAW);
meshUpdated = true;
}
@@ -200,7 +200,9 @@ double World::getHeight(double x, double y, double z)
}
}
} catch (...) { // If we get any errors, just let the character
- return y;
+ //return y;
+ (void)y;
+ return 0.0;
}
return Y;