Remove logging

This commit is contained in:
Christian Semmler 2025-07-12 19:13:22 -07:00
parent e6ae70385f
commit b226b65919

View File

@ -4,7 +4,7 @@ using namespace Extensions;
std::map<std::string, std::string> TextureLoader::options; std::map<std::string, std::string> TextureLoader::options;
bool TextureLoader::enabled = false; bool TextureLoader::enabled = false;
#include <SDL3/SDL_log.h>
void TextureLoader::Initialize() void TextureLoader::Initialize()
{ {
for (const auto& option : defaults) { for (const auto& option : defaults) {
@ -12,11 +12,6 @@ void TextureLoader::Initialize()
options[option.first.data()] = option.second; options[option.first.data()] = option.second;
} }
} }
for (const auto& x : options) {
SDL_Log(x.first.c_str());
SDL_Log(x.second.c_str());
}
} }
bool TextureLoader::PatchTexture(LegoTextureInfo* p_textureInfo) bool TextureLoader::PatchTexture(LegoTextureInfo* p_textureInfo)