From d036717e083e5b660343216bf911d83b71a28dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 16 Apr 2020 10:07:55 +0200 Subject: [PATCH] TextureReplacer: Generate a default value in the ini files for ignoreMipmap. --- Core/TextureReplacer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/TextureReplacer.cpp b/Core/TextureReplacer.cpp index ac5a9a62f0..1d66d5b9d5 100644 --- a/Core/TextureReplacer.cpp +++ b/Core/TextureReplacer.cpp @@ -693,6 +693,8 @@ bool TextureReplacer::GenerateIni(const std::string &gameID, std::string *genera fs << "[options]\n"; fs << "version = 1\n"; fs << "hash = quick\n"; + fs << "ignoreMipmap = false\n"; + fs << "\n"; fs << "[games]\n"; fs << "# Used to make it easier to install, and override settings for other regions.\n"; fs << "# Files still have to be copied to each TEXTURES folder.";