From 58fc3940f2b7110b21b2911bbd9bc30f68c04c7c Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 25 Feb 2016 19:04:13 +0100 Subject: [PATCH] Obj Importer: add missing semicolon to fix the build. --- code/ObjFileMtlImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ObjFileMtlImporter.cpp b/code/ObjFileMtlImporter.cpp index e9be55223..2b3847bbb 100644 --- a/code/ObjFileMtlImporter.cpp +++ b/code/ObjFileMtlImporter.cpp @@ -60,7 +60,7 @@ static const std::string AmbientTexture = "map_Ka"; static const std::string SpecularTexture = "map_Ks"; static const std::string OpacityTexture = "map_d"; static const std::string EmmissiveTexture = "map_emissive"; -static const std::string EmmissiveTexture_1 = "map_Ke" +static const std::string EmmissiveTexture_1 = "map_Ke"; static const std::string BumpTexture1 = "map_bump"; static const std::string BumpTexture2 = "map_Bump"; static const std::string BumpTexture3 = "bump";