Skip to content

Commit

Permalink
#5576: ASE importer is using a simpler StringTokeniser now
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Apr 5, 2021
1 parent 057ff52 commit 685b0e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radiantcore/model/import/AseModel.cpp
@@ -1,7 +1,7 @@
#include "AseModel.h"

#include <fmt/format.h>
#include "parser/DefTokeniser.h"
#include "parser/Tokeniser.h"
#include "parser/ParseException.h"
#include "string/case_conv.h"
#include "string/trim.h"
Expand Down Expand Up @@ -175,7 +175,7 @@ std::shared_ptr<AseModel> AseModel::CreateFromStream(std::istream& stream)
{
auto model = std::make_shared<AseModel>();

parser::BasicDefTokeniser tokeniser(stream);
parser::BasicStringTokeniser tokeniser(stream);

std::vector<AseMaterial> materials;
std::vector<Vertex3f> vertices;
Expand Down

0 comments on commit 685b0e3

Please sign in to comment.