X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fvideo%2Ffont.hpp;h=82f8151c4ab150c31168ba8d6eee86550acc4740;hb=08ccb17345a52f5ffd8a5dd6ecf675cad55f16a7;hp=5625be1851c60b56cc48d2587be1479f9c0243e1;hpb=1a36ad149a4ee89a601d523878d168ed3b68ae62;p=supertux.git diff --git a/src/video/font.hpp b/src/video/font.hpp index 5625be185..82f8151c4 100644 --- a/src/video/font.hpp +++ b/src/video/font.hpp @@ -76,19 +76,19 @@ public: float get_height() const; /** - * returns the given string, truncated (preferrably at whitespace) to be at most max_chars characters long + * returns the given string, truncated (preferably at whitespace) to be at most max_chars characters long */ static std::string wrap_to_chars(const std::string& text, int max_chars, std::string* overflow); /** - * returns the given string, truncated (preferrably at whitespace) to be at most "width" pixels wide + * returns the given string, truncated (preferably at whitespace) to be at most "width" pixels wide */ std::string wrap_to_width(const std::string& text, float width, std::string* overflow); /** Draws the given text to the screen. Also needs the position. * Type of alignment, drawing effect and alpha are optional. */ void draw(Renderer *renderer, const std::string& text, const Vector& pos, - FontAlignment allignment = ALIGN_LEFT, + FontAlignment alignment = ALIGN_LEFT, DrawingEffect drawing_effect = NO_EFFECT, float alpha = 1.0f) const;