diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2021-01-27 21:24:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-27 21:24:10 -0500 |
| commit | d9ba72302b1105d79a06c7da8d9c1bbb8ba2fceb (patch) | |
| tree | 60e8638f3bde3851f7c5b18356472a8d34b7fbf7 /ZAPD/ZTexture.cpp | |
| parent | bca5f827b97cd3c8ab84cc8d573fb13d9579b108 (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.cpp | 3 |
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; } |
