fix: update include paths and add Linux compatibility for various files

This commit is contained in:
JuiceyDev
2026-03-04 20:43:15 +01:00
parent 398981f81d
commit 3379b2ab6a
8 changed files with 71 additions and 13 deletions

View File

@@ -1,4 +1,7 @@
#include "../Build/stdafx.h"
#ifndef __linux__
#include "../../Minecraft.World/IO/Streams/FloatBuffer.h"
#include "../../Minecraft.World/IO/Streams/IntBuffer.h"
#include "../../Minecraft.World/IO/Streams/ByteBuffer.h"
@@ -386,4 +389,7 @@ void glTexGen(int coord, int mode, FloatBuffer *vec)
void glCullFace(int dir)
{
RenderManager.StateSetFaceCullCW( dir == GL_BACK);
}
}
#endif
#endif