summaryrefslogtreecommitdiff
path: root/ZAPD/ZTexture.cpp
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2021-01-27 21:24:10 -0500
committerGitHub <noreply@github.com>2021-01-27 21:24:10 -0500
commitd9ba72302b1105d79a06c7da8d9c1bbb8ba2fceb (patch)
tree60e8638f3bde3851f7c5b18356472a8d34b7fbf7 /ZAPD/ZTexture.cpp
parentbca5f827b97cd3c8ab84cc8d573fb13d9579b108 (diff)
Add errors to texture types (#82)
* started on basic type errors * Done. For now * Push2 * Add errors to texture formats
Diffstat (limited to 'ZAPD/ZTexture.cpp')
-rw-r--r--ZAPD/ZTexture.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ZAPD/ZTexture.cpp b/ZAPD/ZTexture.cpp
index ba58e98..21d01df 100644
--- a/ZAPD/ZTexture.cpp
+++ b/ZAPD/ZTexture.cpp
@@ -792,6 +792,7 @@ TextureType ZTexture::GetTextureTypeFromString(string str)
texType = TextureType::Palette4bpp;
else if (str == "ci8")
texType = TextureType::Palette8bpp;
-
+ else
+ printf("Encountered Unknown Texture Type %s \n",str.c_str());
return texType;
}