Fixed typo ("RPEAT")

This commit is contained in:
Cemalettin Dervis
2017-12-07 21:58:15 +01:00
committed by GitHub
parent 246d866961
commit f889d2b0dc

View File

@@ -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";