Skip to content

Commit

Permalink
#5576: Linux compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Apr 5, 2021
1 parent 8aada47 commit ae69fa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion radiantcore/model/import/AseModel.cpp
Expand Up @@ -5,6 +5,7 @@
#include "parser/ParseException.h"
#include "string/case_conv.h"
#include "string/trim.h"
#include "string/convert.h"

#include "render/VertexHashing.h"

Expand Down Expand Up @@ -49,7 +50,7 @@ namespace model

struct AseModel::Face
{
AseModel::Face()
Face()
{
vertexIndices[0] = vertexIndices[1] = vertexIndices[2] = 0;
normalIndices[0] = normalIndices[1] = normalIndices[2] = 0;
Expand Down
2 changes: 1 addition & 1 deletion radiantcore/model/import/AseModel.h
Expand Up @@ -13,7 +13,7 @@ class AseModel
private:
struct Material
{
AseModel::Material();
Material();

std::string materialName; // *MATERIAL_NAME
std::string diffuseBitmap; // *BITMAP
Expand Down

0 comments on commit ae69fa5

Please sign in to comment.