diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.cpp | 4 | ||||
-rw-r--r-- | src/particle.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index 28e0c17..210207f 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -10,6 +10,10 @@ #include <dirent.h> #include <errno.h> +#else + +#include <windows.h> + #endif // __WIN32__ int getdir(std::string dir, std::list<std::string>& files) 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"); |