From fdcd4a4a9d3b336057d161abc7d1754d37db5685 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 8 Oct 2022 11:22:46 +0200 Subject: [PATCH] (Windows) Fixed an MSVC compiler warning. --- es-core/src/resources/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/resources/Font.cpp b/es-core/src/resources/Font.cpp index 2e54a6549..02140261a 100644 --- a/es-core/src/resources/Font.cpp +++ b/es-core/src/resources/Font.cpp @@ -308,7 +308,7 @@ std::string Font::wrapText(const std::string& text, size_t byteCount {0}; std::string wrappedText; std::string charEntry; - std::vector> dotsSection; + std::vector> dotsSection; bool addDots {false}; for (size_t i = 0; i < text.length(); ++i) {