From: Terri00 Date: Wed, 26 Jun 2019 08:14:36 +0000 (+0100) Subject: fix FXAA/NONE check skip. X-Git-Url: https://skaterift.com/git/?a=commitdiff_plain;h=ed1fa3ebfe322e4e464f583e41663bce6f2d084c;p=tar-legacy.git fix FXAA/NONE check skip. --- diff --git a/MCDV/tar_config.hpp b/MCDV/tar_config.hpp index 58a95a6..c36658e 100644 --- a/MCDV/tar_config.hpp +++ b/MCDV/tar_config.hpp @@ -140,6 +140,7 @@ public: switch (hash(kv::tryGetStringValue(kvs, "ssaam", "3").c_str())) { case hash("1"): this->m_sampling_mode = sampling_mode::MSAA4x; break; case hash("2"): this->m_sampling_mode = sampling_mode::MSAA16x; break; + case hash("0"): this->m_sampling_mode = sampling_mode::NONE; break; } switch (hash(kv::tryGetStringValue(kvs, "outputMode", "0").c_str())) {