From 5b6bc8a12b4db98c2e6ff13dc6b592e48eaa7ddc Mon Sep 17 00:00:00 2001 From: wsor4035 <24964441+wsor4035@users.noreply.github.com> Date: Thu, 22 Jun 2023 11:52:48 -0400 Subject: [PATCH] Remove unsupported media formats from client.cpp --- src/client/client.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/client/client.cpp b/src/client/client.cpp index e6f855cd6..744c5eb90 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -770,7 +770,6 @@ bool Client::loadMedia(const std::string &data, const std::string &filename, const char *image_ext[] = { ".png", ".jpg", ".bmp", ".tga", - ".pcx", ".ppm", ".psd", ".wal", ".rgb", NULL }; name = removeStringEnd(filename, image_ext); @@ -818,7 +817,7 @@ bool Client::loadMedia(const std::string &data, const std::string &filename, } const char *model_ext[] = { - ".x", ".b3d", ".md2", ".obj", + ".x", ".b3d", ".obj", NULL }; name = removeStringEnd(filename, model_ext);