Skip to content

Commit

Permalink
2407: fix space in Hexen2FileSerializer
Browse files Browse the repository at this point in the history
fixes #2407
  • Loading branch information
ericwa committed Nov 1, 2018
1 parent c877616 commit 7778d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/IO/MapFileSerializer.cpp
Expand Up @@ -152,7 +152,7 @@ namespace TrenchBroom {
size_t doWriteBrushFace(FILE* stream, Model::BrushFace* face) override {
writeFacePoints(stream, face);
writeTextureInfo(stream, face);
std::fprintf(stream, "0 \n"); // extra value written here
std::fprintf(stream, " 0\n"); // extra value written here
return 1;
}
};
Expand Down

0 comments on commit 7778d16

Please sign in to comment.