diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-12 21:47:46 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-12 21:47:46 +0100 |
commit | 55329845de3aceef8b3672779f3930cee18e2298 (patch) | |
tree | 20caf7d645b488151c4d4f8b8634d769546eec86 /src/crepe/api/Text.cpp | |
parent | a5810032c3cf012280271b5425411e08438d72d2 (diff) |
added const std::string&
Diffstat (limited to 'src/crepe/api/Text.cpp')
-rw-r--r-- | src/crepe/api/Text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index b30ccf6..c072ee7 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -2,8 +2,8 @@ using namespace crepe; -Text::Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, std::string text, - std::string font_family) +Text::Text(game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const std::string & text, + const std::string & font_family) : UIObject(id, dimensions, offset), text(text), font_family(font_family) {} |