diff --git a/source/shared_lib/sources/graphics/font.cpp b/source/shared_lib/sources/graphics/font.cpp index 86de62595..893f9b0a2 100644 --- a/source/shared_lib/sources/graphics/font.cpp +++ b/source/shared_lib/sources/graphics/font.cpp @@ -49,7 +49,7 @@ float FontMetrics::getTextWidth(const string &str) const { } //Treat 2 byte characters as spaces if(str[i] < 0) { - width+= widths[32]; + width+= widths[87]; // This is the letter W which is a fairly wide character and good to use for spacing i++; } else {