diff options
Diffstat (limited to 'src/particle.cpp')
-rw-r--r-- | src/particle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/particle.cpp b/src/particle.cpp index f2604a6..3303027 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -72,7 +72,7 @@ void ParticleSystem::render(void) }; //glBufferSubData(GL_ARRAY_BUFFER, offset, entrySize, coords); - std::memcpy((void *)((unsigned long)vbobuf + offset), coords, entrySize); + std::memcpy(reinterpret_cast<void*>(reinterpret_cast<unsigned long long>(vbobuf) + offset), coords, entrySize); } UserAssert(glUnmapBuffer(GL_ARRAY_BUFFER) == GL_TRUE, "Failed to unmap the particle VBO"); |