Skip to content

Commit

Permalink
| TextRenderer: Minor whitespace consistency change
Browse files Browse the repository at this point in the history
  • Loading branch information
Mtax-Development committed Jan 5, 2022
1 parent 68793f4 commit 090e7c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/TextRenderer/TextRenderer.gml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ function TextRenderer() constructor
font = ((instanceof(_other.font) == "Font") ? new Font(_other.font.ID)
: _other.font);
location = ((instanceof(_other.location) == "Vector2")
? new Vector2(_other.location)
: _other.location);
? new Vector2(_other.location) : _other.location);
align = ((instanceof(_other.align) == "TextAlign")
? new TextAlign(_other.align) : _other.align);
color = _other.color;
Expand Down

0 comments on commit 090e7c6

Please sign in to comment.