From f889d2b0dc492fe394b023de359d060f6f2ca4ff Mon Sep 17 00:00:00 2001 From: Cemalettin Dervis Date: Thu, 7 Dec 2017 21:58:15 +0100 Subject: [PATCH] Fixed typo ("RPEAT") --- loader_example.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader_example.cc b/loader_example.cc index 156ad61..139e956 100644 --- a/loader_example.cc +++ b/loader_example.cc @@ -135,7 +135,7 @@ static std::string PrintParameterType(int ty) { #endif static std::string PrintWrapMode(int mode) { - if (mode == TINYGLTF_TEXTURE_WRAP_RPEAT) { + if (mode == TINYGLTF_TEXTURE_WRAP_REPEAT) { return "REPEAT"; } else if (mode == TINYGLTF_TEXTURE_WRAP_CLAMP_TO_EDGE) { return "CLAMP_TO_EDGE";