mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
(Windows) Fixed an MSVC compiler warning.
This commit is contained in:
parent
f7d72b4176
commit
fdcd4a4a9d
|
@ -308,7 +308,7 @@ std::string Font::wrapText(const std::string& text,
|
||||||
size_t byteCount {0};
|
size_t byteCount {0};
|
||||||
std::string wrappedText;
|
std::string wrappedText;
|
||||||
std::string charEntry;
|
std::string charEntry;
|
||||||
std::vector<std::pair<int, float>> dotsSection;
|
std::vector<std::pair<size_t, float>> dotsSection;
|
||||||
bool addDots {false};
|
bool addDots {false};
|
||||||
|
|
||||||
for (size_t i = 0; i < text.length(); ++i) {
|
for (size_t i = 0; i < text.length(); ++i) {
|
||||||
|
|
Loading…
Reference in a new issue