1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00

rwengine: spelling fix: 'Alignemnt'

This commit is contained in:
Anonymous Maarten 2017-09-11 20:17:48 +02:00
parent 2ad9667b50
commit 12afe81a35

View File

@ -30,7 +30,7 @@ public:
* @todo Can this be merged with the gamestate text entries?
*/
struct TextInfo {
enum TextAlignemnt { Left = 0, Right = 1, Center = 2 };
enum TextAlignment { Left = 0, Right = 1, Center = 2 };
/// Font index @see TextRenderer::setFontTexture
int font{0};
@ -45,7 +45,7 @@ public:
/// Background colour
glm::u8vec4 backgroundColour{};
/// Horizontal Alignment
TextAlignemnt align = Left;
TextAlignment align = Left;
/// Wrap width
int wrapX{0};