diff --git a/WickedEngine/wiFont.cpp b/WickedEngine/wiFont.cpp index 89f987f67..f28d91b32 100644 --- a/WickedEngine/wiFont.cpp +++ b/WickedEngine/wiFont.cpp @@ -117,7 +117,7 @@ namespace wi::font constexpr int heightfromhash(int32_t hash) { return int((hash >> 0) & 0x3FF); } static wi::unordered_set pendingGlyphs; static wi::SpinLock glyphLock; - static const float upscaling = 2; + static const float upscaling = 1; static const float upscaling_rcp = 1.0f / upscaling; struct ParseStatus diff --git a/WickedEngine/wiVersion.cpp b/WickedEngine/wiVersion.cpp index 22d783d1c..9107c1094 100644 --- a/WickedEngine/wiVersion.cpp +++ b/WickedEngine/wiVersion.cpp @@ -9,7 +9,7 @@ namespace wi::version // minor features, major updates, breaking compatibility changes const int minor = 71; // minor bug fixes, alterations, refactors, updates - const int revision = 192; + const int revision = 193; const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);