mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
Linux fixes.
This commit is contained in:
parent
4093da4866
commit
14a98b2dc5
3 changed files with 3 additions and 4 deletions
|
@ -365,8 +365,6 @@ void lcMesh::ExportWavefrontIndices(lcFile& File, int DefaultColorIndex, int Ver
|
|||
{
|
||||
char Line[1024];
|
||||
|
||||
float* Verts = (float*)mVertexBuffer.mData;
|
||||
|
||||
for (int SectionIdx = 0; SectionIdx < mNumSections; SectionIdx++)
|
||||
{
|
||||
lcMeshSection* Section = &mSections[SectionIdx];
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef _LC_MESH_H_
|
||||
#define _LC_MESH_H_
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "opengl.h"
|
||||
#include "algebra.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SRC += common/algebra.cpp common/camera.cpp common/console.cpp common/curve.cpp common/lc_colors.cpp common/lc_file.cpp lc_mesh.cpp \
|
||||
common/globals.cpp common/group.cpp common/image.cpp common/im_bmp.cpp common/im_gif.cpp \
|
||||
SRC += common/algebra.cpp common/camera.cpp common/console.cpp common/curve.cpp common/lc_colors.cpp common/lc_file.cpp \
|
||||
common/lc_mesh.cpp common/globals.cpp common/group.cpp common/image.cpp common/im_bmp.cpp common/im_gif.cpp \
|
||||
common/lc_application.cpp common/library.cpp common/light.cpp common/mainwnd.cpp \
|
||||
common/matrix.cpp common/message.cpp common/minifig.cpp common/object.cpp common/opengl.cpp \
|
||||
common/piece.cpp common/pieceinf.cpp common/preview.cpp common/project.cpp common/quant.cpp \
|
||||
|
|
Loading…
Reference in a new issue